Jump to content

Resource #6


Xtremer360

Recommended Posts

I keep getting a resource #6 at the top of my script and not sure why.

 

<?php 
if (isset($_REQUEST['option'])) {
switch ($_REQUEST['option']) {
	case 0:
		?>
		<h1 class="backstage">Biographies Management</h1><br />
            <h2 class=backstage>Bio Types</h2><br />
            <?php
            $query = "SELECT * FROM efed_list_styles AS styles";       
            $result = mysql_query ( $query ); 
            	$rows = mysql_num_rows($result);
			if ($rows > 0)  {
			print'<table width="100%" class="table1">
                <tr class="rowheading">
                    <td> </td>
                    <td width="40" align="center">ID</td>
                    <td>Name</td>
                    </tr>';
			$i = 0;
			while ( $row = mysql_fetch_array ( $result, MYSQL_ASSOC ) ) {
				$sClass = 'row2';
				if ($i++ % 2) $sClass = 'row1';
				printf ( "<tr class=\"%s\">", $sClass );
                    print "<td valign=\"top\" align=\"center\" width=\"30\"><a href=\"#\" onclick=\"ajaxpage('backstage_libs/biolayout.php?option=1&id=$row[id].', 'content'); return false;\">Edit</a></td>";
                    printf ( "<td align=\"center\" valign=\"top\" width=\"40\">%s</td>", $row ['id'] );
                    printf ( "<td valign=\"top\">%s</td>", $row ['name'] );
                    echo '</tr>';
                }
			echo '</table><br>';
		} else {
			echo '<span>There are no bio types.</span><br /><br />';
		}
		returnmain();
		footercode();
	break;
	case 1:
            require_once('../backstageconfig.php');
		require_once('../backstagefunctions.php');
		$id = $_GET['id'];
		$query = mysql_query("SELECT * FROM `efed_list_styles` WHERE `id` = '" . $id . "'");
		$row = mysql_fetch_array($query);   
		echo $query;
		?>
            <h1 class="backstage">Bio Layouts Management</h1><br />
            <h2 class="backstage"><?php echo $row['name']; ?> Biography Layout</h2><br />
            <?php
	}
}
?>

Link to comment
Share on other sites

I've echoed a lot of my queries and I've never had a resource id come out.

 

Doubtful.  mysql_query returns a resource id, and that's what you're seeing.  What are you trying to echo exactly?  If you want to echo the 'query' you're going to have to put it into a string first.  If you want data, $row is holding your fetched result set array.  That's where the data is.

Link to comment
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.