nav33n 472 Purple hazed! Team Colleague Featured Poster

lmao :P yeah..

nav33n 472 Purple hazed! Team Colleague Featured Poster

viruses and bacterias are microscopic !

nav33n 472 Purple hazed! Team Colleague Featured Poster

huh! What kinda game is this ? :-/

nav33n 472 Purple hazed! Team Colleague Featured Poster

Backup your data regularly.

nav33n 472 Purple hazed! Team Colleague Featured Poster

opinion of the minority is always ignored.

nav33n 472 Purple hazed! Team Colleague Featured Poster

cold blooded animals are very ugly !

nav33n 472 Purple hazed! Team Colleague Featured Poster

away from home, I live all alone.

nav33n 472 Purple hazed! Team Colleague Featured Poster

computer is a part of my life.

nav33n 472 Purple hazed! Team Colleague Featured Poster

you are welcome :)

nav33n 472 Purple hazed! Team Colleague Featured Poster

Its pretty easy. In page 1, say, you are listing all the houses with hyperlinks. Eg.

$query="select id from houses";
$result=mysql_query($query);
while($row=mysql_fetch_array($result)){
echo "<a href=houseinfo.php?id=".$row['id'];
}

In houseinfo.php, you just have to get the id from the url, fetch its information from the table and print it.

<?php //houseinfo.php
$id=$_GET['id'];
$query="select * from houses where id = '$id'";
$result=mysql_query($query);
$row=mysql_fetch_array($result);
print "Address : ". $row['address'];
print "Cost: ". $row['cost'];
...

Thats bout it..

nav33n 472 Purple hazed! Team Colleague Featured Poster

you are welcome :)

nav33n 472 Purple hazed! Team Colleague Featured Poster

extract rar files using winrar. Then watch/burn the movie.

nav33n 472 Purple hazed! Team Colleague Featured Poster

thats weird.. this will never happen with computers. Its either 0 or 1. Its never 1/2. :-/

nav33n 472 Purple hazed! Team Colleague Featured Poster

:icon_rolleyes: In start1.php, you are adding name to the session. But in viewuser.php, you are checking for username !?!

nav33n 472 Purple hazed! Team Colleague Featured Poster

family and friends is all we need for a happy life.

nav33n 472 Purple hazed! Team Colleague Featured Poster

Do you have 2 different php's installed ? If yes, then there is probably something wrong with its configuration. If no, then, there is something wrong with your script.

nav33n 472 Purple hazed! Team Colleague Featured Poster

Add sessions. If the user enters his username and password in the first page, add his username to the session(if he is a valid user). Then just add a condition,

if(! isset($_SESSION['username'])){ echo " You have to go back to page 1 and enter your username..."; exit }
nav33n 472 Purple hazed! Team Colleague Featured Poster

family man, thats what they call me !

nav33n 472 Purple hazed! Team Colleague Featured Poster

sentence formation is a very difficult thing.

nav33n 472 Purple hazed! Team Colleague Featured Poster

Remember me ? I am the one who pushed you into a well 4 years ago.

nav33n 472 Purple hazed! Team Colleague Featured Poster

day dreaming is good, keep dreaming.

nav33n 472 Purple hazed! Team Colleague Featured Poster

want to learn programming ? Click here.

nav33n 472 Purple hazed! Team Colleague Featured Poster

If you have deleted rundll32.exe by mistake(or by virus attack), you will have problems w.r.t control panel. Try this. Put your windows xp cd in your cd rom, open command prompt and type the following.
cd_rom_drive:\i386\rundll32.ex_ %Systemroot%\rundll32.exe (Eg. d:\i386\rundll32.ex_ %Systemroot%\rundll32.exe , if D is your cd rom drive name) It will extract rundll32.exe file from i386 folder of your installation cd to your system32 cd. After the process, restart your computer. I guess thats about it.
Hope it helps.

nav33n 472 Purple hazed! Team Colleague Featured Poster

24% :icon_rolleyes: I thought i was evil !

nav33n 472 Purple hazed! Team Colleague Featured Poster

Did you read my post carefully ? I have mentioned where the error is ! :-O

And, we asked you to put your code in [ code ] ... [ / code] tags.. ;)

nav33n 472 Purple hazed! Team Colleague Featured Poster
nav33n 472 Purple hazed! Team Colleague Featured Poster

You can use, sum(ifnull(points,0), points_added). If the 1st expression in ifnull ie., points is null, it returns 0 and if its not null, it returns points value. I too dont know much about joins and related problems, but, this link might be useful.

http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html

nav33n 472 Purple hazed! Team Colleague Featured Poster

Achievement is something which can't be achieved by everyone.

nav33n 472 Purple hazed! Team Colleague Featured Poster

I guess, register_globals is turned off in your php settings in linux. Its not recommended to turn it on.

nav33n 472 Purple hazed! Team Colleague Featured Poster

database php formatted ? Why not print the values using a table ? :-/

nav33n 472 Purple hazed! Team Colleague Featured Poster

What is the error that you are getting ? I dont think you can use something like

User Name:<input type=text name=form[frstname]>
Email:<input type=text name=form[email]>

Edit: My mistake. you can specify an array as a name.

nav33n 472 Purple hazed! Team Colleague Featured Poster

smell can be good or bad depending upon what you smell !

nav33n 472 Purple hazed! Team Colleague Featured Poster

Here, in my office, there are people who can type using their nose !

nav33n 472 Purple hazed! Team Colleague Featured Poster

This might help.

nav33n 472 Purple hazed! Team Colleague Featured Poster

people here are very interesting !

nav33n 472 Purple hazed! Team Colleague Featured Poster

so.... you consider the germans from wwI heros? it sounds like you have a confused mind...

He was being sarcastic dude !
:icon_confused:

nav33n 472 Purple hazed! Team Colleague Featured Poster

'People' is a magazine's name which has stories and gossips about your favourite celebrities !

nav33n 472 Purple hazed! Team Colleague Featured Poster
<?php
if($AuthUserName == "administrator")
{

You have forgotten to close this loop. And please, next time wrap your code in

..

tags.

FireNet commented: wow.. you went and read all the jumbled code ;) +5
nav33n 472 Purple hazed! Team Colleague Featured Poster

another virtual path ? or another server ? can you explain a bit more ?

nav33n 472 Purple hazed! Team Colleague Featured Poster

Them, according to me, can't be used to start a sentence !

nav33n 472 Purple hazed! Team Colleague Featured Poster

Okay ! There is no problem with your script. There must be some problem with your smtp configuration. Open php.ini and look for [mail function]. See if smtp is set to your outgoing mail server.

nav33n 472 Purple hazed! Team Colleague Featured Poster

No matter who you choose, they all come under the same category of 'politician'. And according to me, a politician is one who cheats people and eat their money !

nav33n 472 Purple hazed! Team Colleague Featured Poster

Have you initialized the session ? Have you added respective variables to the session ? Are you redirecting the page back to itself ? Show us what you have done. We can see if there is anything wrong with your code.

nav33n 472 Purple hazed! Team Colleague Featured Poster

you are welcome.

nav33n 472 Purple hazed! Team Colleague Featured Poster

Before sending the mail, try to print what's in $email. Or, hardcode email address and try sending a mail. I am sure something goes wrong while fetching the data from the database cuz it works here.

nav33n 472 Purple hazed! Team Colleague Featured Poster

nauseating rides should be avoided !

nav33n 472 Purple hazed! Team Colleague Featured Poster

I dont see a closing brace of if (isset($_REQUEST['submit'])) .
$username and $password is not declared.
And, $from="yourname@domain.com"; should be $from = "From: [email]yourname@domain.com[/email]";

nav33n 472 Purple hazed! Team Colleague Featured Poster

anyway, you might find this link useful..

nav33n 472 Purple hazed! Team Colleague Featured Poster

Asking once will do. You dont have to create a duplicate thread. Mods don't like duplicate threads. If there is anyone who knows the answer, they will reply to it.

nav33n 472 Purple hazed! Team Colleague Featured Poster

And why exactly did you create a duplicate thread ?