Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.