Recent content by ganger

  1. G

    php getting a error message looked on the internet but nothing error message below?

    Notice: Undefined index: album in C:\wamp\www\photoalbum\album.php on line 18 program works just dont want the error message and want to know why it appears and how to solve it line 18 is $get_album = $_GET['album']; full code below <html> <head> <script type="text/javascript" src...
  2. G

    php mysql trying to get data from 2 seperate tables and putting into a 3rd?

    basically i have 2 tables 1 called members and one called events i want to get username from table 1 and get event from table 2 and put them into a new table what php code do i need $query =" INSERT INTO ??
  3. G

    Php mysql trying to get data from table a and table c putting into a table c?

    basically i have 2 tables 1 called members and one called events i want to get username from table 1 and get event from table 2 and put them into a new table what php code do i need $query =" INSERT INTO ?? i have built a web site were people can join and book certain events so i created 2...
  4. G

    php trying to echo out username in another php file?

    From my logout.php file (below) i want to use the $_SESSION['username']=$myusername; on another php file what code do i need to use to echo out the users name i have tried <?php session_start(); $_SESSION['username']; if (($_SESSION['auth'] == false)||(!isset($_SESSION['auth']))){...
  5. G

    php how to post a Variable to mysql?

    i know how to post or get from a form and send to a data base but how do send a variable to a data base i have wrote program were now i got a variable but because it not a form i do not know how to pass this to be stored in a mysql $name = $_SESSION['username']; i want to be able to save...
  6. G

    Php trying to echo out username in another php file?

    From my logout.php file (below) i want to use the $_SESSION['username']=$myusername; on another php file what code do i need to use to echo out the users name i have tried the if statement is for letting signed in members keep logged in i want to use the $usename from login.php and use in...
  7. G

    php i have a login page and trying to use the username in the booking page?

    one the customer as login to the web site and they have booked an event i want to be able to callthe username below is small code where i trying to call the user name and simply echo it out but all i get is blank i can call the game variable from booking page when try reuse the usernaem nothing...
  8. G

    php mysql how to print results to a html page i have made a booking page?

    which post to server saves all the data in mysql how do i print the events they have booked on the for example on the home.html page so when they re-vist the website the events they have booked show up please can some one show some code or explain
  9. G

    php mysql how to print results to a html page i have made a booking page?

    which post to server saves all the data in mysql how do i print the events they have booked on the for example on the home.html page so when they re-vist the website the events they have booked show up please can some one show some code or explain
  10. G

    php login the programs runs but every time get user does not exist when i run the web...

    ...site? seems to be no problem with connection to database hoping someone can see a mistake or were i neeed to add some code or change the code ?php $username = $_POST['username']; $password = $_POST['password']; if ($username&&$password) { $connect =...
  11. G

    html trying to use a photo as a background can use a .gif file as background?

    but then i come to trying to use a photo as a backgroung i come stuck <body background="photo.jpeg" > is the code am trying to use can anyone please give help as really want to use photo as background
Back
Top