This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2011-10-07 03:30:09

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Everything Web Code! (Thread 2)

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:

Please support and join to help or learn!

Last edited by WindowsExplorer (2011-10-07 03:32:16)


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#2 2011-10-07 03:31:30

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Everything Web Code! (Thread 2)

Code:

<?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-->

http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#3 2011-10-07 03:38:25

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Everything Web Code! (Thread 2)

You should change the demo 1 to
demo 1


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#4 2011-10-07 04:03:28

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Everything Web Code! (Thread 2)

ssss wrote:

You should change the demo 1 to
demo 1

No. This way people can see the link, which helps more.


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#5 2011-10-07 04:14:11

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Everything Web Code! (Thread 2)

WindowsExplorer wrote:

ssss wrote:

You should change the demo 1 to
demo 1

No. 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.


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#6 2011-10-08 11:42:11

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Everything Web Code! (Thread 2)

PLAXON.COMYR.COM - WEBSITE FINISHED! COMING SOON: PROJECT UPLOADER!

Last edited by WindowsExplorer (2011-10-08 11:42:30)


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

Board footer