i have this script that i made only i try to also put in a if else for for some reason the script is not putting out the else echo. its not really a problem as the script works but it would be nice to have it work as i intended.
Code: [Select]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
-->
</style>
</head>
<body>
<?php
echo '<link href="path/custom/style.css" rel="stylesheet" type="text/css">';
$model = $_GET['id'];
$filename = (explode (":",$model));
$filename2 = (explode ("-",$filename[1]));
$space = " ";
$path = $filename2[0]. $space . $filename2[1];
$user_name = "";
$password = "";
$database = "";
$server = "";
$db_handle = mysql_connect($server, $user_name, $password);
$db_found = mysql_select_db($database, $db_handle);
$model = "SELECT * FROM ..... WHERE name='$path'";
$result = mysql_query($model);
while($rows=mysql_fetch_array($result)){
if ($rows['name'] == $path){
?></p>
<table width="100%" border="0" cellspacing="1" cellpadding="0" class="profile">
<tr>
<td width="25%" height="113" valign="top"><table width="100%" border="0" cellspacing="2" cellpadding="0">
<tr>
<td width="27%" bgcolor="#8DCEFA">Model</td>
<td width="5%" bgcolor="#003464"><div align="center"><span class="style1">:</span></div></td>
<td width="68%" bgcolor="#FAE4AB"><? echo $rows['name']?></td>
</tr>
<tr>
<td bgcolor="#8DCEFA">Age:</td>
<td bgcolor="#003464"><div align="center"><span class="style1">:</span></div></td>
<td bgcolor="#FAE4AB"><? echo $rows['age'] ?></td>
</tr>
<tr>
<td bgcolor="#8DCEFA">Country</td>
<td bgcolor="#003464"><div align="center"><span class="style1">:</span></div></td>
<td bgcolor="#FAE4AB"><? echo $rows['country'] ?></td>
</tr>
<tr>
<td bgcolor="#8DCEFA">City</td>
<td bgcolor="#003464"><div align="center"><span class="style1">:</span></div></td>
<td bgcolor="#FAE4AB"><? echo $rows['city'] ?></td>
</tr>
<tr>
<td bgcolor="#8DCEFA">Ethnic</td>
<td bgcolor="#003464"><div align="center"><span class="style1">:</span></div></td>
<td bgcolor="#FAE4AB"><? echo $rows['ethnic'] ?></td>
</tr>
</table></td>
<td width="19%" valign="top"><table width="100%" border="0" cellspacing="2" cellpadding="0">
<tr>
<td width="66" bgcolor="#8DCEFA">Eyes</td>
<td width="12" bgcolor="#003464"><div align="center"><span class="style1">:</span></div></td>
<td width="99" bgcolor="#FAE4AB"><? echo $rows['eyes'] ?></td>
</tr>
<tr>
<td bgcolor="#8DCEFA">Hair</td>
<td bgcolor="#003464"><div align="center"><span class="style1">:</span></div></td>
<td bgcolor="#FAE4AB"><? echo $rows['hair'] ?></td>
</tr>
<tr>
<td bgcolor="#8DCEFA">Height</td>
<td bgcolor="#003464"><div align="center"><span class="style1">:</span></div></td>
<td bgcolor="#FAE4AB"><? echo $rows['height'] ?></td>
</tr>
<tr>
<td bgcolor="#8DCEFA">Weight</td>
<td bgcolor="#003464"><div align="center"><span class="style1">:</span></div></td>
<td bgcolor="#FAE4AB"><? echo $rows['weight'] ?></td>
</tr>
<tr>
<td width="66" bgcolor="#8DCEFA">style</td>
<td bgcolor="#003464"><div align="center"><span class="style1">:</span></div></td>
<td bgcolor="#FAE4AB"><? echo $rows['style'] ?></td>
</tr>
</table></td>
<td width="56%" valign="top"><table width="100%" border="0" cellspacing="2" cellpadding="0">
<tr>
<td bgcolor="#8DCEFA">Biography</td>
</tr>
<tr>
<td bgcolor="#FAE4AB"><? echo $rows['bio'] ?></td>
</tr>
</table></td>
</tr>
</table>
<?
}else {
echo "it works";
}
}
mysql_close($db_handle);
?>
</p>
</body>
</html>
maybe sone help me figure out what i did wrong here
Print out contents of to Excel
I have got this script that gathers all the data that I need but I need it to send it to excel instead back to the screen in the web browser. How can I do this? Should I use something
newbie error
what is wrong with this code ? <html><body><?php$conn=odbc_connect('Towel','','');if (!$conn) {exit("Connection Failed: " . $conn);}$sql="SELECT *
get the country of visitor and display content based on that
Hello all,I have seen that Google analytics can tell you where a visitor is coming from and I want to do something similar. But I would like to add the functionality of redirecting a user based on his
Intrastat Report Config in ECC 6.0 - goods Movement in EU countries
Colleagues, need ur help to understand the changes require in ECC 6 standard Report configuration settings.
php is not recognized as an internal or external command
Hello,I am trying to bake the code in CakePHP through my console.I have changed my Path in Environment Variables but still I am getting this error in console "php is not recognized as an internal
Need help with an email blocker for a guessbook
I am new with php and here is a simple guessbook page but I am being hit with spam from a group of the same email. I know I need to do an IF statement but I am kinda foggy on how to do the code.What I
PHP mail() rejected by SMTP
I'm currently working on a newsletter application which is installed on a windows 2003 server running apache. This server is scheduled to run a script every 5 minutes that will send an email to 10
MVC - Code review
I'm in the process of trying to wrap my head around MVC, and as part of that, I'm attempting to implement a super-tiny MVC framework.I've created some mockups of how the framework might be used based
show the direct link into href
I want to display link on the page. i am fetching the data(URL) from database,actually before that i am checking if it is URL or not. if it is URL, let take an example google.com so it should take me
Unique Visitor Tracking
Hello. Currently, I run a voting site where voters are tracked by their IP address and can only vote once every 12 hours.The system works well, except it can be exploited very easily. Visitor's only