Jump to content

mysql_query problem


eduard77

Recommended Posts

I ty to make a mysql_query that looks like this

<?php require_once("includes/connection.php"); ?>
<?php require_once("includes/functions.php"); ?>
<?php mysql_close($connection);?>
<?php 
   $menu_name = $_POST['menu_name'];
   $position = $_POST['position'];
   $visible  = $_POST['visible'];
   ?>
  <?php
      $query = "INSERT INTO subjects (
          menu_name, position, visible
		  ) VALUES (
		   '{menu_name}', {position}, {visible}
		   )";
   if(mysql_query($query, $connection)) {
	    header("Location: content.php");
		exit;
   } else {
	   echo "<p>Subject creation failed.</p>";
	   echo "<p>" . mysql_error() . "</p>";
   }
   ?>

but  returns me the following error

Warning: mysql_query(): 5 is not a valid MySQL-Link resource in C:\wamp\www\widget_corp\create_subject.php on line 15

 

Subject creation failed.

I am thinking for a long while what could be wrong but I cannot find a solution.

So if anyone knows what should I do i would be very greatfull.

Link to comment
https://forums.phpfreaks.com/topic/218492-mysql_query-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.