[BASIC] Account Generator 10-17-2015, 06:37 PM
#1
Hey everyone. The beauty of VB.NET is the simplicity of the syntax which makes it easy to learn! I certainly am no pro but I've learned a lot over the year, in which I began to self teach myself. Here is a simple Account Generator which uses a text file hosted on a webhost along with a php file that extracts one random account from the text file.
Setting up the web portion of this project:
*You'll need an text file containing all the accounts you'd like to be generated by the program. Please keep it to 1 account per line.
*You'll need to make a php file
To make the program you'll need a textbox,progress bar(optional),button
![[Image: 6bb2220ff420412fb52d3fd721a0acb0.png]](http://i.prntscr.com/6bb2220ff420412fb52d3fd721a0acb0.png)
![[Image: b860b0f8b2984b1e9252a97779a1d0df.png]](http://i.prntscr.com/b860b0f8b2984b1e9252a97779a1d0df.png)
In a bit I'll post a more comprehensive account generator.
To download my version of the program to here is the link
http://greatergood.zz.mu/BasicAccountGenerator.zip
Regards,
Classified
Setting up the web portion of this project:
*You'll need an text file containing all the accounts you'd like to be generated by the program. Please keep it to 1 account per line.
*You'll need to make a php file
PHP Code:
<?php
$f_contents = file("NAME OF THE TXT FILE YOU UPLOADED.txt");
$line = $f_contents[array_rand($f_contents)];
$data = $line;
Echo $data;
?>
'This is the file you'll link into the program
To make the program you'll need a textbox,progress bar(optional),button
![[Image: 6bb2220ff420412fb52d3fd721a0acb0.png]](http://i.prntscr.com/6bb2220ff420412fb52d3fd721a0acb0.png)
![[Image: b860b0f8b2984b1e9252a97779a1d0df.png]](http://i.prntscr.com/b860b0f8b2984b1e9252a97779a1d0df.png)
In a bit I'll post a more comprehensive account generator.
To download my version of the program to here is the link
http://greatergood.zz.mu/BasicAccountGenerator.zip
Regards,
Classified

![[+]](https://sinister.li/images/modern/collapse_collapsed.png)










