PHP Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesPHP Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old April 12th, 2000, 02:39 AM
chayani chayani is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2000
Posts: 9 chayani Negative: is most likely a SPAMMER and a traitor to the cause. 
Time spent in forums: < 1 sec
Reputation Power: 0
i have written a php script which check user authetication for the specific data. The database is MYSQL.
i wnat to call different html files like if the user is authentic it will go to the datbase file. if he is new user he should go to sign up.

should i use link function if so how.<?


if ($mem_name)
{

if($mem_pswd)
{
$db = mysql_connect("localhost", "mchayani", "Avirat")or die("Unable to connect to SQL server");

mysql_select_db("savdhan_com",$db);

$result = mysql_query ("SELECT * FROM mem_data WHERE Usr_name = '".$HTTP_POST_VARS["mem_name"]."'", $db);

if ( $myrow = mysql_fetch_array ($result) )
{
if ( !strcmp($mem_pswd, $myrow["Password"]))
{

if (!strcasecmp( "y", $myrow["flag"]) )
{
// I WOULD LIKE TO DISPALY ANOTHER HTML/PHP FILE
echo "Your Account has been activated" ;
exit();
}
else
{
// I WOULD LIKE TO DISPALY ANOTHER HTML/PHP FILE

echo "Your Account is not yet activated" ;
exit () ;
}
}
else
{
// I WOULD LIKE TO DISPALY ANOTHER HTML/PHP FILE
echo "Retype your password";
}
}
else
{
// I WOULD LIKE TO DISPALY ANOTHER HTML/PHP FILE

echo "You are not register User";
exit ();
}

}
else
{// I WOULD LIKE TO DISPALY ANOTHER HTML/PHP FILE

echo "Enter Password";
exit();
}

}
else
{
echo "Enter The valid User name and Password" ;
exit() ;
}

?>



Reply With Quote
  #2  
Old April 12th, 2000, 10:41 PM
cka cka is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2000
Location: Ontario, Canada
Posts: 498 cka User rank is Corporal (100 - 500 Reputation Level)cka User rank is Corporal (100 - 500 Reputation Level)cka User rank is Corporal (100 - 500 Reputation Level)cka User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 17
Your best bet is to use include() for the html files.

eg;
if (!strcasecmp( "y", $myrow["flag"]) )
{
include("./authorized.html");
}


Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPHP Development > html file call with php script

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap