School Map:  Home / Enroll $ Student Records; Class  
$ News @ LIVE Tech Radio * Support/FAQ | Store | FORUMS

 

 (#720 2004-10-29 14:02:46) Post Reply
Page 0 1 2 3 4 5 6 7 8

JXWolF
Need To Set


Enrolled: Oct 2004
Posts: 2
AP: 1

Hey Let me knwo if this is what you wanted.


<html>
<head>
<title>Lesson #1</title>
</head>
<body>
<?php
$fname
='Jon';
$lname='Notmyreallastname';
$nick='JXWolF';
$url1='<a href="http://www.xerorip.com" target="_blank">www.xerorip.com</a>';
$url2='<a href="http://www.slapshow.com" target="_blank">www.slapshow.com</a>';
print (
"Hi, I'm $fname $lname, but you can call me $nick.<br>");
print (
"Here is a list of websites i enjoy.<br>");
print (
"$url1<br>$url2");
?>
</body>
</html>


 

 (#722 2004-10-31 17:14:54) Post Reply
Page 0 1 2 3 4 5 6 7 8

spanweb
Need To Set


Enrolled: Oct 2004
Posts: 3
AP: 1

<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
Page 0 1 2 3 4 5 6 7 8

EroKaos
Need To Set


Enrolled: Nov 2004
Posts: 2
AP: 1

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
Page 0 1 2 3 4 5 6 7 8

AJDS
Need To Set


Enrolled: Oct 2004
Posts: 1
AP: 1

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
Page 0 1 2 3 4 5 6 7 8

FamYon
Need To Set


Enrolled: Nov 2004
Posts: 3
AP: 1

<?
//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
Page 0 1 2 3 4 5 6 7 8

Zefiruw
Need To Set


Enrolled: Nov 2004
Posts: 1
AP: 1

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
Page 0 1 2 3 4 5 6 7 8

KevinS
Need To Set


Enrolled: Nov 2004
Posts: 1
AP: 1

Hi everyone,
Here's My First Weeks Worth..



<?php
//These Are My Variables
$nick="Special K";
$Mysite='<a href="http://ebizlibrarian.com" target="blank">eBiz Librarian.com</a>';

//Here's where I call and print my variables
print("Hey Everyone, my name is Kevin but my friends just call me<br>
$nick LOL.
<br><br>
My favorite site is $Mysite which I've been working on for a while now.

I love this stuff and really appreciate the course.

Kudos to you TDAVE!"
)
?>



Awesome Site & Courses :=)

Kevin "I Love This Stuff" Scott

 

 (#746 2004-12-06 11:44:52) Post Reply
Page 0 1 2 3 4 5 6 7 8

jcast
Need To Set


Enrolled: Dec 2004
Posts: 3
AP: 1

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
Page 0 1 2 3 4 5 6 7 8

Aktar
Need To Set


Enrolled: Dec 2004
Posts: 5
AP: 1

<?

//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
Page 0 1 2 3 4 5 6 7 8

Yaggles
Need To Set


Enrolled: Dec 2004
Posts: 2
AP: 1

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
Page 0 1 2 3 4 5 6 7 8

Yaggles
Need To Set


Enrolled: Dec 2004
Posts: 2
AP: 1

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
Page 0 1 2 3 4 5 6 7 8

bigtony
Need To Set


Enrolled: Dec 2004
Posts: 2
AP: 1

<?
//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
Page 0 1 2 3 4 5 6 7 8

bigtony
Need To Set


Enrolled: Dec 2004
Posts: 2
AP: 1

<?
//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
Page 0 1 2 3 4 5 6 7 8

LSINGZR1
Need To Set


Enrolled: Jan 2005
Posts: 1
AP: 1

[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
Page 0 1 2 3 4 5 6 7 8

wilmec
Need To Set


Enrolled: Feb 2005
Posts: 1
AP: 1

<?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
Page 0 1 2 3 4 5 6 7 8

LowenWolfe
Need To Set


Enrolled: Feb 2005
Posts: 7
AP: 1

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:



<?php
$nick
="LowenWolfe"; // Name variable
$fav_url="http://www.buynowshop.com/"; // Favorite URL variable
print("My name is $nick"); // Prints the contents of the variable $nick
print(" "); // Prints a space
print("<br>A favorite URL of mine is $fav_url"); // Prints the contents of the variable $fav_url
?>




LowenWolfe

 

 (#773 2005-03-06 10:38:18) Post Reply
Page 0 1 2 3 4 5 6 7 8

zman
Need To Set


Enrolled: Feb 2005
Posts: 15
AP: 1

My Assignment 1:



<html>
<
head>
<
title>ScriptSchool.com Assignment 1</title>
</
head>
<
body bgcolor="666666">

<?
php
/* ScriptSchool.com 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.*/
print("<center><p><b>ScriptSchool.com Assignment 1</b><br />
Write a script to store and print your name (nick) and at least one<br />
favorite url to the browser using variables to assign them. Make<br />
the variable names conform to the rules explained above and use<br />
comments in the code explaining each line of code.</p></center>"
);

// Assignment of variables.
$firstname = 'Eric';
$lastname = 'Pruss';
$schoolscript_nickname = 'zman';
$mysite_nickname = 'Zepp';
$website_URL = 'http://garagechoppers.com';
$website_name = 'GarageChoppers.Com';

// Output information to browser.
print("<center></b><br />");
print(
"My name is <b>$firstname $lastname</b>.<br />");
print(
"My website is <b><a href=$website_URL target=_blank>$website_name</a></b>.<br />");
print(
"On SchoolScript.com, my nickname is <b>$schoolscript_nickname</b>, though on $website_name, my nickname is <b>$mysite_nickname</b>.</center>")

?>
</body>
</html>


 

 (#788 2005-03-14 15:31:19) Post Reply
Page 0 1 2 3 4 5 6 7 8

putrfixr
Need To Set


Enrolled: Mar 2005
Posts: 1
AP: 1

<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
Page 0 1 2 3 4 5 6 7 8

irunat2am
Need To Set


Enrolled: Mar 2005
Posts: 6
AP: 1



<html>
<body>
<p align="center">
<?php

$first
="Mike";
$last="Hickman";
$url="2advanced";

print(
"Hey there-<br><br>My name is $first $last. One of my favorite web addresses is <a href='http://www.2advanced.com''>$url</a>.<br><br>Take Care-<br><br>$first :)");

?>
</body>
</html>


 

 (#792 2005-03-25 20:09:21) Post Reply
Page 0 1 2 3 4 5 6 7 8

irunat2am
Need To Set


Enrolled: Mar 2005
Posts: 6
AP: 1

Forgot my comments..whoops!


<html>
<body>
<p align="center">
<?php

$first
="Mike"; //first name
$last="Hickman"; //last name
$url="2advanced"; // favorite url

//print my name, and one of my favorite url
print("Hey there-<br><br>My name is $first $last. One of my favorite web addresses is <a href='http://www.2advanced.com''>$url</a>.<br><br>Take Care-<br><br>$first :)");

?>
</body>
</html>


 

 (#797 2005-04-02 04:37:23) Post Reply
Page 0 1 2 3 4 5 6 7 8

Kancer
Need To Set


Enrolled: Apr 2005
Posts: 1
AP: 1



<?
/* Beginning of Assignment #1 */
$nick = "Kancer-";
$favwebby = "hotscripts";

print(
"Hello im known as $nick online. One of my favorite websites would be <a href='http://www.hotscripts.com'>$favwebby</a>.");

/* End of Assignment #1 */
?>



 

 (#798 2005-04-05 18:43:46) Post Reply
Page 0 1 2 3 4 5 6 7 8

N8miah
Need To Set


Enrolled: Apr 2005
Posts: 2
AP: 1

<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
Page 0 1 2 3 4 5 6 7 8

DaveRoyal
Need To Set


Enrolled: Apr 2005
Posts: 1
AP: 1

<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
Page 0 1 2 3 4 5 6 7 8

shiftyeyes
Need To Set


Enrolled: Apr 2005
Posts: 1
AP: 1

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
Page 0 1 2 3 4 5 6 7 8

michaelp
Need To Set


Enrolled: Apr 2005
Posts: 4
AP: 1


<?
#data
$f_name="Michael";
$l_name="Price";
$my_site="<a href=\"http://www.theinsiderslist.com\">The InsidersList</a>";
?> Hello,<br> My name is
<?
print ($f_name); print ($l_name) ?>
<br>
Please visit my website <? print ($my_site) ?> <br>
Thank you for visiting


 

 (#804 2005-04-21 15:39:52) Post Reply
Page 0 1 2 3 4 5 6 7 8

michaelp
Need To Set


Enrolled: Apr 2005
Posts: 4
AP: 1


<?
#data
$f_name="Michael";
$l_name="Price";
$my_site="<a href=\"http://www.theinsiderslist.com\">The InsidersList</a>";
?> Hello,<br> My name is
<?
print ($f_name); print ($l_name) ?>
<br>
Please visit my website <? print ($my_site) ?> <br>
Thank you for visiting


 

 (#809 2005-04-29 09:25:39) Post Reply
Page 0 1 2 3 4 5 6 7 8

marijan
Need To Set


Enrolled: Apr 2005
Posts: 1
AP: 1



<html>

<head>
<title>Week One - First try</title>
</head>
<body>


<?php

//define variable
$firstname = "Marijan";
$lastname = "Barbul";
$website = '<a href="http://www.google.com" target="">Give it a try</a>';
// Display information in browser.
print ("Hello, my name is $firstname $lastname.<br>My favorite website is: $website");

?>


</body>

</html>



 

 (#814 2005-05-09 16:56:37) Post Reply
Page 0 1 2 3 4 5 6 7 8

zash
Need To Set


Enrolled: May 2005
Posts: 1
AP: 1

/my-nick/= "Zash" /nickname/
/favorite-url/="http://www.onrpg.com/" favorite url

 

 (#816 2005-05-19 23:36:36) Post Reply
Page 0 1 2 3 4 5 6 7 8

scriptgeek
Need To Set


Enrolled: May 2005
Posts: 3
AP: 1

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
Page 0 1 2 3 4 5 6 7 8

DarePoo
Need To Set


Enrolled: May 2005
Posts: 10
AP: 1


<html>
<head>
<title>SchoolScript.com Assignment #1</title>
</head>
<body>
<?
//Strings uses in this script. My name and favorite url's
$name="Mike";
$favurl="http://www.downtownmafia.com";
$favurl2="http://www.projectrockstar.com";
//Writing the information to the browser.
print("My name is $name.<br>");
print(
"One of my favorite links is $favurl. I also enjoy $favurl2.");
?>
</body>
</html>


 

  Page 0 1 2 3 4 5 6 7 8

View Previous Thread
Print this page Print This Page

View Next Thread

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