Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~2K People Reached
Favorite Forums

8 Posted Topics

Member Avatar for KPheasey

Hello, I have the following page: [URL="http://k-fez.com/example.html"]http://k-fez.com/example.html[/URL] If you mouseover an image, it doubles the size of the image and centers it. However, it displaces the rest of the images. I would like it to just overlay ontop of the other images instead of re-sizing the row/column. Also, I would …

Member Avatar for dineshv
0
124
Member Avatar for KPheasey

I can't figure out why my tables are being pushed to the right so much in FireFox. Please take a look and let me know what you think the problem could be. [url]http://ground360.org/coupons/[/url] Thanks.

Member Avatar for KPheasey
0
242
Member Avatar for KPheasey

I have the following code which should update the total items in a categories list every time that a search filter is changed. However, the function will only run once. [CODE] function getXMLHTTP() { //fuction to return the xml http object var xmlhttp=false; try{ xmlhttp=new XMLHttpRequest(); } catch(e) { try{ …

Member Avatar for stbuchok
0
448
Member Avatar for mpc123
Re: php

Insert the following code right before echo "Thank you...... [code=php] $to = "youremail@somewhere.com" //Your email address $subject = "New Entry"; //Email subject $message = "new details have been entered into the database" //Body of email mail($to, $subject, $message); [/code] Check [url]http://php.net/manual/en/function.mail.php[/url] for complete info on the mail() function.

Member Avatar for mpc123
0
91
Member Avatar for KPheasey

I am having a weird problem setting a session variable. I use a session array ($_SESSION['message']) to display messages. $_SESSION['message']['type'] = error/success; $_SESSION['message']['message'] = $message; Here is the function for displaying the message: [code=php] function displayMessage(){ if(isset($_SESSION['message'])){ echo" <div class=\"notification " . $_SESSION['message']['type'] . " png_bg\"> <div> " . $_SESSION['message']['message'] …

Member Avatar for KPheasey
0
286
Member Avatar for lwaterfo

Try this: [code=php] session_start(); if (!isset($_SESSION['memberusername'])){ header("location:contractorlogin.php"); exit(); } $user = $_SESSION['memberusername']; $sql = "SELECT Username FROM contractors WHERE Username LIKE'" . $user . "'"; $query = mysql_query($sql); $row = mysql_fetch_array($query); echo $row['username']; [/code] if there are multiple rows being returned try this: [code=php] session_start(); if (!isset($_SESSION['memberusername'])){ header("location:contractorlogin.php"); exit(); } …

Member Avatar for lwaterfo
0
81
Member Avatar for Clarkeez
Member Avatar for hielo
0
130
Member Avatar for bsse007

register a session variable username. Then use UPDATE tblename SET title=whatever WHERE username = '$_SESSION['username']';

Member Avatar for Horacio91
0
147

The End.