HELP ! - Coding A Generator !

Posts 1621 of 21 · Page 2 of 2
Did you ever solve your OP? or did you give up?
Quote Originally Posted by Dab View Post
Did you ever solve your OP? or did you give up?
Thanks for the help , i'm still trying my best to solve it , but i was out of the house most of the day , so i didnt have time to learn much php
but the beginning of the intro to php seemed alot like html and python , it's like duplicates of them mixed together :P however after passing through the php course as to where everything becomes complicated and im not able to do that , I'll ask for you help , thanks for your assistance @Dab <3
Thanks for sparing the time to help me :P
Quote Originally Posted by leaguesdesk1 View Post
Thanks for the help , i'm still trying my best to solve it , but i was out of the house most of the day , so i didnt have time to learn much php
but the beginning of the intro to php seemed alot like html and python , it's like duplicates of them mixed together :P however after passing through the php course as to where everything becomes complicated and im not able to do that , I'll ask for you help , thanks for your assistance @Dab <3
Thanks for sparing the time to help me :P
I can set you up a generator website for a fee, but if your looking on how to make a shitty coded html generator here's a good one to use.
Just insert that html code into a embed code on your editor or whatever your using.
The thing is about html code is that you can see it via inspect element, therefore it's not safe to use and all the accounts will be exposed.

My skype: alpha.source3
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://mpgh.net">
<html>
<head>
<p style="font-size:25px">
	<title>Random Message</title>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
	
<script type="text/javascript">
	var msgArr = new Array();
	msgArr[0] = "Account";
	msgArr[1] = "Account";
	msgArr[2] = "Account";
	window.onload = function () {
		document.getElementById("msgDiv").innerHTML = msgArr[Math.floor(Math.random()*msgArr.length)];
	}
</script>
</head>

<body>
<div id="msgDiv"></div>
</body>
</html>
Quote Originally Posted by RusHac View Post
I can set you up a generator website for a fee, but if your looking on how to make a shitty coded html generator here's a good one to use.
Just insert that html code into a embed code on your editor or whatever your using.
The thing is about html code is that you can see it via inspect element, therefore it's not safe to use and all the accounts will be exposed.

My skype: alpha.source3
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://mpgh.net">
<html>
<head>
<p style="font-size:25px">
	<title>Random Message</title>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
	
<script type="text/javascript">
	var msgArr = new Array();
	msgArr[0] = "Account";
	msgArr[1] = "Account";
	msgArr[2] = "Account";
	window.onload = function () {
		document.getElementById("msgDiv").innerHTML = msgArr[Math.floor(Math.random()*msgArr.length)];
	}
</script>
</head>

<body>
<div id="msgDiv"></div>
</body>
</html>
Contacted u on skype
Quote Originally Posted by leaguesdesk1 View Post
Contacted u on skype
Just did built the website thanks a lot!
Quote Originally Posted by leaguesdesk1 View Post
why are u being so rude
I'm an asshole. Don't take it personally.
Posts 1621 of 21 · Page 2 of 2

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?