Ok so to start off, let me say that I'm a total PHP beginner. So I have a mysql insert
$sql="INSERT INTO gj (name, phone, city, zipcode, description, dateadded, website, address1, other2, payment_options, Products, email,cat1,cat2,cat3)
    VALUES
    ('$companyname','$phone','$city','$zipcode','$description',curdate(),'$website','$address','$other','$payment','$products','$email','$select1','$select2','$select3')";
    if (!mysql_query($sql,$link))
      {
      die('Error: ' . mysql_error());
      }
    echo "<br/><h2><font color='green' style='font-size:15px;float:right'>1 business added</font></h2>";
    mysql_close($link);
}
    ?>
Şimdi yerine yeşil "1 İş Eklendi" görüntüleme arka önce oldu sayfaya yönlendirmek istiyorum. Herhangi bir Yardım büyük mutluluk duyacağız.
