School Map:
Home / Enroll
$ Student Records; Class
$ News @ LIVE
Tech Radio * Support/FAQ
| Store | FORUMS
(#720 2004-10-29 14:02:46) Post Reply |
|
JXWolF
|
Hey Let me knwo if this is what you wanted.
|
(#722 2004-10-31 17:14:54) Post Reply |
|
spanweb
|
<html>
<head> <title>Script School Week 1 </title> </head> <body> <?php echo "<h1>This is my Week 1 to do List</h1>"; //these are my variables $fname = "Span"; $lname = "Web"; $my_url = "http://www.scriptschool.com/"; //show these variables on the web browser echo "<b> My name is : " . $fname . " ". $lname . "<br/>"; echo "My favorite URL is : " . """.$my_url. """ . "</b>"; ?> </body> </html> |
(#726 2004-11-05 16:53:14) Post Reply |
|
EroKaos
|
Here is my first script. Plz feel free to critizes this anything is welcome.
<?php $comment = This is the first script i have made with PHP!; //This is just a comment print($comment) $mynick = EroKaos; //This is my nick in everywhere. print($mynick) $myfavoritewebsite = http://scriptscholl.com; //This is my favorite website. print($myfavoritewebsite) php?> |
(#730 2004-11-07 14:06:41) Post Reply |
|
AJDS
|
week one assignment
<? $name="jerry"; $nick="JB (don't ask)"; $Studentname="AJDS"; $favsite="http://outwar.com"; print("My name is $name my friends call me $nick, my Script School name is $studentname and my favorite site is $favsite"); ?> |
(#739 2004-11-15 03:16:40) Post Reply |
|
FamYon
|
<?
//prints my name $name = "Hi my Name is NetGens"; print($name); //print a url I visit often $url = "I visit this site often http://www.hotscripts.com"; print $url ?> |
(#744 2004-11-22 13:57:54) Post Reply |
|
Zefiruw
|
I have a problem, im on 100 webspace, and everytime i put on the PHP code it comes up with
[glow=red] Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/www/sdman.freeprohost.com/date.php on line 2 Parse error: parse error in /home/www/sdman.freeprohost.com/date.php on line 3 [/glow] My code is [glow=green]<? $today=date("j.n.y"); print("the current date is: $today"); ?>[/glow] |
(#745 2004-11-22 22:29:46) Post Reply |
|
KevinS
|
Hi everyone,
Here's My First Weeks Worth..
Awesome Site & Courses :=) Kevin "I Love This Stuff" Scott |
(#746 2004-12-06 11:44:52) Post Reply |
|
jcast
|
Hello everyone!
I am excited (believe it or not) to "hand in" my first assignment. Please let me know if improvements can be made. <html> <head> <title>PHP Week 1 Assignment</title> </head> <body> <script language="php"> // Variable to store value of your nick name. $nick="jcast"; // Variable to store your favorite URL/web address. $url="<http://www.google.com/>"; // Now, we will print statements which include the variables above. print("Hello everyone. My name is $nick. <br /> My favorite web site is $url."); </script> </body> </html> |
(#749 2004-12-11 22:20:17) Post Reply |
|
Aktar
|
<?
//Variable defined as $nickname and $favorite_url $nickname="Aktar"; $fav_url="Http://WWW.Google.com"; print("My nickname is : ".$nickname); print("<BR/>"); print("My favorite URL is : ".$fav_url); ?> |
(#752 2004-12-12 01:40:22) Post Reply |
|
Yaggles
|
I used the echo and pring functions, and a few variables to complete this assignment.
<HTML> <HEAD> <TITLE>Script School: PHP Assignment #1</TITLE> <BODY> <?PHP ##Set the variables... $nick = 'Yaggles'; $fn = 'David'; $ln = 'King'; $url = 'http://www.chromehost.com/phpbb'; //AWESOME FREE PHP WEBSITE HOST $message = $nick . '<BR>' . $fn . '<BR>' . $ln . '<BR>' . $url; echo $message; print $message; ?> </BODY> </HTML> |
(#753 2004-12-12 01:40:41) Post Reply |
|
Yaggles
|
I used the echo and pring functions, and a few variables to complete this assignment.
<HTML> <HEAD> <TITLE>Script School: PHP Assignment #1</TITLE> <BODY> <?PHP ##Set the variables... $nick = 'Yaggles'; $fn = 'David'; $ln = 'King'; $url = 'http://www.chromehost.com/phpbb'; //AWESOME FREE PHP WEBSITE HOST $message = $nick . '<BR>' . $fn . '<BR>' . $ln . '<BR>' . $url; echo $message; print $message; ?> </BODY> </HTML> |
(#755 2004-12-14 18:28:41) Post Reply |
|
bigtony
|
<?
//Author: Tony Stegall //Date: 12-13-04 //This script will simply produce my name and my favorite websit $myname='Tony'; // variable to hold my name $mywebsite='http://www.empornium.us'; //variable to hold website information print("Hello my name is $myname and my favorite website is $mywebsite"); ?> |
(#756 2004-12-14 18:30:15) Post Reply |
|
bigtony
|
<?
//Author: Tony Stegall //Date: 12-13-04 //This script will simply produce my name and my favorite websit $myname='Tony'; // variable to hold my name $mywebsite='http://www.empornium.us'; //variable to hold website information print("Hello my name is $myname and my favorite website is $mywebsite"); ?> |
(#763 2005-01-14 11:31:48) Post Reply |
|
LSINGZR1
|
[CODE]
<HTML> <HEAD> <TITLE>LSINGZR1 assignment 1<TITLE> <BODY> <? //assigning variables $firstname="Larry"; $nickname="LSINGZR1"; $website="www.judgecentral.com"; $comments = "Let's hope this tutorial works, God know nothing else has"; print($comments); </BODY> </HTML> [/CODE] |
(#765 2005-02-05 17:13:42) Post Reply |
|
wilmec
|
<?php $firstname="andy";
$secondname="wilmec"; $website="www.wildeals.co.uk"; print ("hi my name is $firstname $secondname <br> and my favorite website is $website "); ?> |
(#766 2005-02-18 13:14:25) Post Reply |
|
LowenWolfe
|
Just recently found this website and for some reason or another these forums just "seem" to have started "working" for me today.
Here is my script for Week 1:
LowenWolfe |
(#773 2005-03-06 10:38:18) Post Reply |
|
zman
|
My Assignment 1:
|
(#788 2005-03-14 15:31:19) Post Reply |
|
putrfixr
|
<html>
<head> <title>Assignment #1</title> </head> <body> <?php $fname='PUTR'; $lname='Fixr'; $nick='PUTRFixr'; $url='<a href="http://www.big-boyz.com" target="_blank">www.big-boyz.com</a>'; print ("Hi, I'm $fname $lname. My nickname is $nick.<br>"); print ("Here is the website I visit the most => $url.<br>"); ?> </body> </html> |
(#791 2005-03-25 20:04:17) Post Reply |
|
irunat2am
|
|
(#792 2005-03-25 20:09:21) Post Reply |
|
irunat2am
|
Forgot my comments..whoops!
|
(#797 2005-04-02 04:37:23) Post Reply |
|
Kancer
|
|
(#798 2005-04-05 18:43:46) Post Reply |
|
N8miah
|
<html>
<head> <title>Assignment 1</title> </head> <body> <? /* This is the part where I assign variables and show that I have learned something...lol */ $nick = "n8miah"; $site1fav = "http://www.google.com"; // Display part print("My name is $nick, and I like this site: $site1fav"); ?> </body> </html> |
(#800 2005-04-07 01:19:46) Post Reply |
|
DaveRoyal
|
<html>
<head> <title>Learning PHP</title> </head> <body> <h1> <center> Welcome to Learning PHP </center> </h1> <hr width=50%> <? /* TO-DO ASSIGNMENT #1: Write a script to store and print your name (nick) and at least one favorite url to the browser using variables to assign them. Make the variable names conform to the rules explained above and use comments in the code explaining each line of code. Cut and paste your code to the Week 1 forum to share with others in the appropriate "To-do Assignment #1" folder. */ $InternetNick="Data Dragon"; // Set nickname variable $MyFavoriteURL="http://www.codezoo.net"; // Set favorite website URL print("My Internet Nickname is: n"); // Print setup text print($InternetNick); // Print nick variable ?> <br> <? print("My favorite web address is: n"); // Print setup text for URL print($MyFavoriteURL); // Print favorite URL ?> <br><br> <hr> </body> </html> |
(#801 2005-04-13 06:22:58) Post Reply |
|
shiftyeyes
|
Here it is my first script
<? $name = "Deano"; $site = "http://scanneraustralia.com"; Print("name $name<br>"); Print("site $site<br>"); ?> |
(#803 2005-04-21 15:36:20) Post Reply |
|
michaelp
|
|
(#804 2005-04-21 15:39:52) Post Reply |
|
michaelp
|
|
(#809 2005-04-29 09:25:39) Post Reply |
|
marijan
|
|
(#814 2005-05-09 16:56:37) Post Reply |
|
zash
|
/my-nick/= "Zash" /nickname/
/favorite-url/="http://www.onrpg.com/" favorite url |
(#816 2005-05-19 23:36:36) Post Reply |
|
scriptgeek
|
I didn't put this in an html page
<?php //Set variable $name = "kyle meek"; //fav sites $sites = "http://www.scripts.com"; $sites_two = "http://www.actionscript.org"; //Echo variable to browser echo ("$name <BR> $sites <BR> $sites_two"); // Print the current date. print ("<br>The current date is: " . date("m/j/y")); php?> |
(#819 2005-05-21 21:54:40) Post Reply |
|
DarePoo
|
|
View Previous Thread Print This Page |
School Map:
Home / Enroll
$ Student Records; Class
$ News @ LIVE
Tech Radio * Support/FAQ
| Store
Advertising
| Link To Us | Privacy
Copyright 2000-2002 Script School Productions / KMR
Enterprises
No part of this website may be reproduced, copied and/or distributed
in any medium
without express written permission