Nieuw lid |
|
Koen schreef: Welke code gebruik je nu dan precies?!
Zie onderaan. Zoals je kan zien heb ik 2 stukken code die ik probeer om te foutmelding "niet beschikbaar" te zien wanneer er geen emailadres in het veld aanwezig is. Wanneer er wel een emailadres in het veld aanwezig is dan moet hij het emailadres tonen.
Echter werkt geen van beide. Volgens mij moet ik de functie empty gebruiken, ziet er goed uit maar het werkt niet..
<?php include("kop.php"); ?>
<div class="test1">
<font class=hoofdtitel>ZOEK</font><br /><font class=subtitel>uw specialist op provincie</font><br />
<img src="/images/kaart-belgie.jpg" />
</div>
<div class="test2">
<?php
error_reporting(E_ALL);
//replace usernaem,password, and yourdb with the information for your database
mysql_connect("localhost","***","***") or die(mysql_error());
mysql_select_db("***");
//replace TestTable with the name of your table
//also in a real app you would get the id dynamically
$sql = "select * from klanten where firmaID = '$_GET[firmaID]'";
$query = mysql_query($sql) or die(mysql_error());
while ($row = mysql_fetch_array($query)){
$firma = $row['firma'];
$straat = $row['straat'];
$postcode = $row['postcode'];
$stad = $row['stad'];
$land = $row['land'];
$tel = $row['tel'];
$email = $row['email'];
$website = $row['website'];
$groep_binnen = $row['groep_binnen'];
$groep_buiten = $row['groep_buiten'];
$groep_gordijnstoffen = $row['groep_gordijnstoffen'];
$foto1 = $row['foto1'];
$foto2 = $row['foto2'];
$foto3 = $row['foto3'];
$foto4 = $row['foto4'];
//we will echo these into the proper fields
}
mysql_free_result($query);
?>
<font class=hoofdtitel><?php echo $firma;?></font><br /><font class=subtitel>uw specialist op provincie</font><br /><br />
<table border="0" width="430" style="padding-left:5px; padding-top:5px; border-style:solid; border-color:#e7e7e7; border-width:thin;">
<tr>
<td width="294" valign="top">
<font class=normaltekstpijl>> </font><font class=firmanaam2><b><?php echo $firma;?></b></font><br><br>
<font class=normaltekst> Straat: <?php echo $straat;?><br>
Postcode: <?php echo $postcode;?><br>
Stad: <?php echo $stad;?><br>
Land: <?php echo $land;?><br><br>
Tel: <?php echo $tel;?><br>
E-mail:
<?php
if(empty($row['email']))
{
echo "niet beschikbaar";
}
else
{
echo "<a href=mailto:" . $row['email'] . "?subject=Contact via raamdecoratie.be>" . $row['email'] . "'</a></b>";
}
?><br>
<?php
if ($row["email"] == "")
{
echo "<a href=mailto:" . $row['email'] . "?subject=Contact via raamdecoratie.be>" . $row['email'] . "'</a></b>";
}
else
{
echo "niet beschikbaar";
}
?>
<!-- E-mail: <a href=mailto:<?php# echo $email;?>?subject=Contact via raamdecoratie.be><?php# echo $email;?></a><br>-->
Website: <a href=http://<?php echo $website;?> target="_blank"><?php echo $website;?></a><br><br>
</font>
</td>
<td valign="top">
<?php
if(file_exists('uploads/'.$foto1) && !is_dir('uploads/'.$foto1))
{
$fotovari1 = '<img width=96 src=uploads/'.$foto1.">";
} else
{
$fotovari1 = '<img width=96 src=images/geen-foto.jpg>';
}
echo $fotovari1;
?>
</td>
</tr>
</table>
<?php
if(file_exists('uploads/'.$foto2) && !is_dir('uploads/'.$foto2))
{
$fotovari2 = '<img width=150 src=uploads/'.$foto2.">";
} else
{
$fotovari2 = '<img width=150 src=images/geen-foto150.jpg>';
}
echo $fotovari2;
?>
<?php
if(file_exists('uploads/'.$foto3) && !is_dir('uploads/'.$foto3))
{
$fotovari3 = '<img width=150 src=uploads/'.$foto3.">";
} else
{
$fotovari3 = '<img width=150 src=images/geen-foto150.jpg>';
}
echo $fotovari3;
?>
<?php
if(file_exists('uploads/'.$foto4) && !is_dir('uploads/'.$foto4))
{
$fotovari4 = '<img width=150 src=uploads/'.$foto4.">";
} else
{
$fotovari4 = '<img width=150 src=images/geen-foto150.jpg>';
}
echo $fotovari4;
?>
</div>
<?php include("voet.php"); ?>
<?php include("kop.php"); ?> <div class="test1"> <font class=hoofdtitel>ZOEK</font><br /><font class=subtitel>uw specialist op provincie</font><br /> <img src="/images/kaart-belgie.jpg" /> </div> <div class="test2"> <?php //replace usernaem,password, and yourdb with the information for your database //replace TestTable with the name of your table //also in a real app you would get the id dynamically $sql = "select * from klanten where firmaID = '$_GET[firmaID]'"; $firma = $row['firma']; $straat = $row['straat']; $postcode = $row['postcode']; $stad = $row['stad']; $land = $row['land']; $tel = $row['tel']; $email = $row['email']; $website = $row['website']; $groep_binnen = $row['groep_binnen']; $groep_buiten = $row['groep_buiten']; $groep_gordijnstoffen = $row['groep_gordijnstoffen']; $foto1 = $row['foto1']; $foto2 = $row['foto2']; $foto3 = $row['foto3']; $foto4 = $row['foto4']; //we will echo these into the proper fields } ?> <font class=hoofdtitel> <?php echo $firma;? ></font><br /><font class=subtitel>uw specialist op provincie</font><br /><br /> <table border="0" width="430" style="padding-left:5px; padding-top:5px; border-style:solid; border-color:#e7e7e7; border-width:thin;"> <tr> <td width="294" valign="top"> <font class=normaltekstpijl>> </font><font class=firmanaam2><b> <?php echo $firma;? ></b></font><br><br> <font class=normaltekst> Straat: <?php echo $straat;? ><br> Postcode: <?php echo $postcode;? ><br> Stad: <?php echo $stad;? ><br> Land: <?php echo $land;? ><br><br> Tel: <?php echo $tel;? ><br> E-mail: <?php { } else { echo "<a href=mailto:" . $row['email'] . "?subject=Contact via raamdecoratie.be>" . $row['email'] . "'</a></b>"; } ?><br> <?php if ($row["email"] == "") { echo "<a href=mailto:" . $row['email'] . "?subject=Contact via raamdecoratie.be>" . $row['email'] . "'</a></b>"; } else { } ?> <!-- E-mail: <a href=mailto:<?php# echo $email;?>?subject=Contact via raamdecoratie.be><?php# echo $email;?></a><br>--> Website: <a href=http:// <?php echo $website;? > target="_blank"> <?php echo $website;? ></a><br><br> </font> </td> <td valign="top"> <?php { $fotovari1 = '<img width=96 src=uploads/'.$foto1.">"; } else { $fotovari1 = '<img width=96 src=images/geen-foto.jpg>'; } ?> </td> </tr> </table> <?php { $fotovari2 = '<img width=150 src=uploads/'.$foto2.">"; } else { $fotovari2 = '<img width=150 src=images/geen-foto150.jpg>'; } ?> <?php { $fotovari3 = '<img width=150 src=uploads/'.$foto3.">"; } else { $fotovari3 = '<img width=150 src=images/geen-foto150.jpg>'; } ?> <?php { $fotovari4 = '<img width=150 src=uploads/'.$foto4.">"; } else { $fotovari4 = '<img width=150 src=images/geen-foto150.jpg>'; } ?> </div> <?php include("voet.php"); ?>
|