Forum: PHP Oct 8th, 2008 |
| Replies: 1 Views: 369 Here is my problem. I built an website for a pizza cafe and I built an application for online ordering. When it came to placing the order, i give them the option to pay using cash of using credit... |
Forum: PHP Aug 21st, 2007 |
| Replies: 13 Views: 1,949 Now it won't let me enter the user name into the database because it's already there...I'm confued. Keeps telling me 'duplicate entry for key 1'...I double checked the database and it's not set to... |
Forum: PHP Aug 21st, 2007 |
| Replies: 13 Views: 1,949 That worked to a point...i understand what you did, but I don't understand why it's returning a value of 0 (zero) for the userid. Everyone that I insert into the database is giving me the same userid... |
Forum: PHP Aug 21st, 2007 |
| Replies: 13 Views: 1,949 <?php require_once('Connections/riders.php'); ?>
<?php
if (!isset($_SESSION)) {
session_start();
}
$logoutAction = $_SERVER['PHP_SELF']."?doLogout=true";
if... |
Forum: PHP Aug 21st, 2007 |
| Replies: 13 Views: 1,949 Still having problems with this...any ideas anyone? |
Forum: PHP Aug 20th, 2007 |
| Replies: 13 Views: 1,949 Aw man....I get it...Thanks...I am about to head out of work for the day...We'll see how it goes tonight and I'll let you know tomorrow...Thanks for all your help! |
Forum: PHP Aug 20th, 2007 |
| Replies: 13 Views: 1,949 Thats where I think I am giong wrong. I've tried to do that, but it just doesn't work. Any suggestions on the line of code that i could use? I've tried setting the $loginuser name and session... |
Forum: PHP Aug 20th, 2007 |
| Replies: 13 Views: 1,949 Well, I am trying to use the login name as the post name for the message. I can set the $_session['MM_Username'] to it and it works until they log out. I can make it show up, but the user would have... |
Forum: PHP Aug 20th, 2007 |
| Replies: 13 Views: 1,949 Hey guys. Got a quick question. I am having a problem with a message board that I am creating. I have created the log in and registration page and the sessions needed to use the site nad it all works... |