Welcome to everything webcode! A group that makes template php/html websites to help new programmers learn! Everything Web Code is a PHP/HTML/CSS/Javascript/SQL webcoding group that I decided to make! Here we talk about and/or make template web page files. You can also join if you want to learn more - And pretty soon you'll be making a website site this! So, let's get started! I made a demo php text replacement code generator, so it's easy to learn text replacement in php! (The demo can be found here). If you would like to join, just post below and I'll add your name to the list (I'll be making a registration form on the website too!).
Here are demo pages I have been working on too:
Debug:
Help debug code 2
Please support and join to help or learn!
Last edited by WindowsExplorer (2011-10-07 03:32:16)
Offline
<?php $text1 = $_GET['text1']; // this is setting the text1 GET variable $text2 = $_GET['text2']; // and this is setting the text2 GET variable ?> <form> <input type="text" name="name" value="<?php echo $text1; ?>" /><!--the value="" part is how you set the default text in the field--> <!--and the value="<php echo $text1; ?>" is setting the value to the variable above--> <input type="text" name="request" value="<?php echo $text2; ?>" /><!--and this is doing the exact same as above, exept setting it to $text2 insted of $text1--> </form> <!--now when we go to plaxon.comyr.com/demo1.php?text1=hello&text2=world would show the word "hello" in textbox1--> <!--and would show the word "world" in textbox2-->
Offline
ssss wrote:
You should change the demo 1 to
demo 1
No. This way people can see the link, which helps more.
Offline
WindowsExplorer wrote:
ssss wrote:
You should change the demo 1 to
demo 1No. This way people can see the link, which helps more.
It just doesn't look very good, and it is shortened down using the /.../ thing.
Offline
PLAXON.COMYR.COM - WEBSITE FINISHED! COMING SOON: PROJECT UPLOADER!
Last edited by WindowsExplorer (2011-10-08 11:42:30)
Offline