ignite Posted April 12, 2007 Posted April 12, 2007 Hi im looking for something to code thats not to hard but is very usefull for users or staff. Im quit new to coding but figured the best way to learn is by coding. Quote
-Matt- Posted April 12, 2007 Posted April 12, 2007 Re: Need something to code try newspaper editor lol Quote
Z?v?? Posted April 12, 2007 Posted April 12, 2007 Re: Need something to code Try making a user list that only the owner can view that will show the info of every field in the users table. It shouldn't be too hard and it could be useful to some people. Quote
hamster01 Posted April 12, 2007 Posted April 12, 2007 Re: Need something to code hehe, both that things are a bit easy.. But you should learn about it ps. if i had to make something like that there is about 100 fields in users table ;) Quote
Z?v?? Posted April 12, 2007 Posted April 12, 2007 Re: Need something to code Well, if he has a newer game, more than likely, he doesn't have quite 100. But anyways, I didn't know how easy he was wanting. :| I was just trying to help out and give him some ideas lol. Quote
Raptor_Jesus Posted April 12, 2007 Posted April 12, 2007 Re: Need something to code I charge even for my ideas :-D :lol: :-P Quote
hamster01 Posted April 12, 2007 Posted April 12, 2007 Re: Need something to code in that case.. Im broke :lol: Quote
Raptor_Jesus Posted April 12, 2007 Posted April 12, 2007 Re: Need something to code LOL I thought that would bring people running :cry: Quote
hamster01 Posted April 12, 2007 Posted April 12, 2007 Re: Need something to code LOL I thought that would bring people running :cry: IMAO! Quote
ignite Posted April 12, 2007 Author Posted April 12, 2007 Re: Need something to code Nice idea im ganna try it now. Quote
ignite Posted April 12, 2007 Author Posted April 12, 2007 Re: Need something to code Well ive got the extra column in the user list so only admins can see it but nothing appears in the column even low i have {$r['lastip']} there. Quote
hamster01 Posted April 12, 2007 Posted April 12, 2007 Re: Need something to code can i write the script for you? Then you rewrite :) $rs = mysql_query("SELECT * FROM users"); echo "<table><tr><th>Name</th><th>IP</th></tr>"; while ($r = mysql_fetch_array($rs)){ echo "<tr><td>".$r['username']."</td><td>".$r['lastip']."</td></tr>"; } echo "</table>"; THere XD Quote
ignite Posted April 12, 2007 Author Posted April 12, 2007 Re: Need something to code No worrys ive done it but mine don't look like that lol. Quote
CraigF Posted April 12, 2007 Posted April 12, 2007 Re: Need something to code dont you need an IF function so staff can see it only Quote
ignite Posted April 12, 2007 Author Posted April 12, 2007 Re: Need something to code Yep thats what i did and i now need something else to code hmmm. Quote
hamster01 Posted April 12, 2007 Posted April 12, 2007 Re: Need something to code code my a browser like this one: http://deathsta.justfreespace.com/mogs/inex2.php Quote
ignite Posted April 12, 2007 Author Posted April 12, 2007 Re: Need something to code <center><form method='post' onsubmit="browse()"><input type='text' name='browser'><input type='submit' value='browse'></form> viewing website: <iframe width=100% height=100% src='http://google.com'></iframe> Â :-D Quote
ignite Posted April 12, 2007 Author Posted April 12, 2007 Re: Need something to code I don't wanna even try to code that. I need something that will be usefull. Quote
hamster01 Posted April 13, 2007 Posted April 13, 2007 Re: Need something to code that is usefull. You learn out of every pice of thing you do. How do people download the internet? Bit by Bit. Quote
hamster01 Posted April 13, 2007 Posted April 13, 2007 Re: Need something to code Here it is: <?php session_start(); echo "<center><form method='post' onsubmit=\"browse()\"><input type='text' name='browser'><input type='submit' value='browse'></form> "; if (!$_POST){ $loc = "http://google.com"; } elseif ($_POST){ $loc = $_POST['browser'];} echo "viewing website: "; if ($loc == "http://google.com" || $loc == "http://www.google.com"){ echo "[img=http://www.google.co.za/intl/en_com/images/logo_plain.png]";} else { echo $loc;} echo " <iframe width=100% height=100% src='$loc'></iframe>"; ?> Quote
Aqua Posted April 13, 2007 Posted April 13, 2007 Re: Need something to code i reckon you should try coding some simple stuff for the lite :) Start with modifying stuff first then go on to coding from scratch Quote
ignite Posted April 13, 2007 Author Posted April 13, 2007 Re: Need something to code I might try and make a owners pannel. Or are they hard ? Quote
CraigF Posted April 13, 2007 Posted April 13, 2007 Re: Need something to code they are kinda hard. alot of functions and you need to know the sql in phpmyadmin and stuff Quote
twist_killer Posted April 13, 2007 Posted April 13, 2007 Re: Need something to code this might be done already..but try coding a high-low game Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.