Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 34
  1. #21
    Join Date
    Aug 2006
    Location
    Manchester, UK
    Posts
    2,016
    Tokens
    141
    Habbo
    florx

    Latest Awards:

    Default

    Nice suggestion (Y) will do that

    +rep

    Edit: Gotta spread! Sorry

  2. #22
    Join Date
    May 2006
    Posts
    1,797
    Tokens
    0

    Latest Awards:

    Default

    Lol

    nps

    Good luck with em
    Coming and going...
    Highers are getting the better of me

  3. #23
    Join Date
    Aug 2006
    Location
    Manchester, UK
    Posts
    2,016
    Tokens
    141
    Habbo
    florx

    Latest Awards:

    Default

    How is the quality of the video and the audio?

    Thanks,
    Jake

  4. #24
    Join Date
    Aug 2006
    Location
    Manchester, UK
    Posts
    2,016
    Tokens
    141
    Habbo
    florx

    Latest Awards:

    Default

    Ive made another cause I was bored (yet again :p)

    So here goes:

    Tutorial 1:http://jake-hall.co.uk/phptutorials/...click.php?id=1
    Tutorial 2:http://jake-hall.co.uk/phptutorials/clicks/click.php?id=2

    15.1mb - 9:12mins

    If anybody would like to make me a nice layout for this php video page - it only needs to be simple (css maybe?) and without images if possible to reduce load time as the videos are long enough as it is :p. Then it would be greatly thanked!

    Thanks and enjoy,
    Jake.
    Last edited by Florx; 20-11-2007 at 09:09 PM.

  5. #25
    RedCrisps Guest

    Default

    i will look at the others in abit, they look kl :]

  6. #26
    Join Date
    Apr 2007
    Location
    england
    Posts
    536
    Tokens
    0

    Default

    I have this:
    PHP Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    #body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 9px;
    }
    </style>
    </head>

    <body>
    <div id="body">
    <?php

    // The variables
    $name $_POST[name];
    $age $_POST[age];
    $email $_POST[email];
    $submit $_POST[submit];

    // If's
    if($submit !=""){

    if(
    $name !=""){
    echo 
    "Whoah! You didn't type a name!";
    }

    elseif(
    $age !=""){
    echo 
    "Whoah! We need your age to verify you are old enough to join!!";
    }

    elseif(
    $email !=""){
    echo 
    "Woah! We need your email to update you on news!";
    }

    echo 
    "Heya, $name - The details you entered are as followed:<br>
    Name: 
    $name<br>
    Age: 
    $age<br>
    E-mail: 
    $email";
    exit;
    }

    // Form's file name
    <form action="form.php" method="post">
    // The actual form
    Name: <input type="text" name="name"><br>
    Age: <input tye="text" name="age"><br>
    E-mail: <input type="text" name="email"><br>
    // The ending
    </form>

    ?>
    </div>
    </body>
    </html>
    I get the following error: "Parse error: syntax error, unexpected '<' in /home/habbcr/public_html/will/php/form.php on line 47".
    Line 47 is:
    PHP Code:
    <form action="form.php" method="post"


    Selling DJ/Habbo layout, more info here.


  7. #27
    Join Date
    Aug 2006
    Location
    Manchester, UK
    Posts
    2,016
    Tokens
    141
    Habbo
    florx

    Latest Awards:

    Default

    Yeah cause you didn't either echo the form out or close the php ?> before the form started
    Try this :p
    PHP Code:
     <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    #body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 9px;
    }
    </style>
    </head>

    <body>
    <div id="body">
    <?php

    // The variables
    $name $_POST[name];
    $age $_POST[age];
    $email $_POST[email];
    $submit $_POST[submit];

    // If's
    if($submit !=""){

    if(
    $name !=""){
    echo 
    "Whoah! You didn't type a name!";
    }

    elseif(
    $age !=""){
    echo 
    "Whoah! We need your age to verify you are old enough to join!!";
    }

    elseif(
    $email !=""){
    echo 
    "Woah! We need your email to update you on news!";
    }

    echo 
    "Heya, $name - The details you entered are as followed:<br>
    Name: 
    $name<br>
    Age: 
    $age<br>
    E-mail: 
    $email";
    exit;
    }
    ?>
    // Form's file name
    <form action="form.php" method="post">
    // The actual form
    Name: <input type="text" name="name"><br>
    Age: <input tye="text" name="age"><br>
    E-mail: <input type="text" name="email"><br>
    // The ending
    </form>


    </div>
    </body>
    </html>
    Last edited by Florx; 20-11-2007 at 10:04 PM. Reason: Try this

  8. #28
    Join Date
    Apr 2007
    Location
    england
    Posts
    536
    Tokens
    0

    Default

    I want the form to be with the PHP though?


    Selling DJ/Habbo layout, more info here.


  9. #29
    Join Date
    Oct 2007
    Location
    Luton, England
    Posts
    1,548
    Tokens
    388
    Habbo
    DeejayMachoo

    Latest Awards:

    Default

    PHP Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    #body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 9px;
    }
    </style>
    </head>

    <body>
    <div id="body">
    <?php

    // The variables
    $name $_POST[name];
    $age $_POST[age];
    $email $_POST[email];
    $submit $_POST[submit];

    // If's
    if($submit !=""){

    if(
    $name !=""){
    echo 
    "Whoah! You didn't type a name!";
    }

    elseif(
    $age !=""){
    echo 
    "Whoah! We need your age to verify you are old enough to join!!";
    }

    elseif(
    $email !=""){
    echo 
    "Woah! We need your email to update you on news!";
    }

    echo 
    "Heya, $name - The details you entered are as followed:<br>
    Name: 
    $name<br>
    Age: 
    $age<br>
    E-mail: 
    $email";
    exit;
    }

    // Form's file name
    echo("<form action=\"form.php\" method=\"post\">");
    // The actual form
    echo("Name: <input type=\"text\" name=\"name\"><br>
    Age: <input tye=\"text\" name=\"age\"><br>
    E-mail: <input type=\"text\" name=\"email\"><br>"
    );
    // The ending
    echo("</form>");
    ?>
    </div>
    </body>
    </html>
    Last edited by DeejayMachoo$; 20-11-2007 at 10:12 PM.


  10. #30
    Join Date
    Aug 2006
    Location
    Manchester, UK
    Posts
    2,016
    Tokens
    141
    Habbo
    florx

    Latest Awards:

    Exclamation

    What should I do next mail / mysql / functions ?

    Thanks,
    Jake

Page 3 of 4 FirstFirst 1234 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •