PHP expert |
|
ik heb een klein linksysteem, waar eender wie afiliatie kan worden. Ze moeten gewoon een kleine form invullen, maar bij het verzenden van de gegevens loopt iets mis, en wordt "" weggeschreven (niets dus)... maar er wordt wel weggeschreven, want als ik dan ga tellen, geeft ie het juiste aantal weer
dit is mijn scriptje (ahja, de header zendt ook niet, ook al gebruik ik ob_start(), weet iem mss waarom?)
<?php
ob_start();
include("connect.php");
include("css.php");
if(!isset($_POST['submit'])){
?>
<form name="link" METHOD="post">
<table border=1 bordercolor=#606060 width="680">
<tr>
<td valign="top" width="80">
Adress
</td>
<td valign="top" width="100">
<input type="text" name="adres" class="input" width="600">
</td>
<td width="500">
</td>
</tr>
<tr>
<td valign="top" width="80">
Info
</td>
<td valign="top" width="600" colspan="2">
<textarea rows="10" cols="70" name="info" class="input"></textarea>
</td>
</tr>
<tr>
<td border=1 colspan=4>
<center>
<input type="Submit" value="SUBMIT" name="submit" class="input">
</center>
</td>
</tr>
</table>
</form>
<?php
}else{
$adres=$_POST['adres'];
$info=$_POST['info'];
if($info = ""){
$error = "please fill in the info!";
}
if($adres = ""){
$error = "please fill in the adres!";
}
if(!$error){
$query="INSERT into links(linknaam, info) VALUES('$adres', '$info')";
mysql_query($query) or die (mysql_error());
header ("Location: links.php");
}
else{
echo $error;
}
}
?>
<?php include("connect.php"); include("css.php"); if(!isset($_POST['submit'])){ ?> <form name="link" METHOD="post"> <table border=1 bordercolor=#606060 width="680"> <tr> <td valign="top" width="80"> Adress </td> <td valign="top" width="100"> <input type="text" name="adres" class="input" width="600"> </td> <td width="500"> </td> </tr> <tr> <td valign="top" width="80"> Info </td> <td valign="top" width="600" colspan="2"> <textarea rows="10" cols="70" name="info" class="input"></textarea> </td> </tr> <tr> <td border=1 colspan=4> <center> <input type="Submit" value="SUBMIT" name="submit" class="input"> </center> </td> </tr> </table> </form> <?php }else{ $adres=$_POST['adres']; $info=$_POST['info']; if($info = ""){ $error = "please fill in the info!"; } if($adres = ""){ $error = "please fill in the adres!"; } if(!$error){ $query="INSERT into links(linknaam, info) VALUES('$adres', '$info')"; header ("Location: links.php"); } else{ } } ?>
|