Jump to content

[SOLVED] array help


dennismonsewicz

Recommended Posts

Code:

 

<?php

/*ini_set ("display_errors", "1");
error_reporting(E_ALL);*/

include "includes/sql.php";

$id = 24;

$query = mysql_query("SELECT * FROM added_projects WHERE id = '$id'")or die(mysql_error());

$results = mysql_fetch_object($query);

$checkbox_qry = mysql_query("SELECT * FROM has_had_projects WHERE project = '" . $results->project . "'")or die(mysql_error());

$field = mysql_num_fields($checkbox_qry);

	for($i = 0; $i < $field; $i++) {
		$names = mysql_field_name($checkbox_qry, $i);
		$title .= trim($names) . "<br />";
	}
	echo $title;

?>

 

How would I delete the first two entries in the array?

Link to comment
Share on other sites

wow its amazing the things you learn on this forum! LOL! thanks it works!

 

Here is the code for those who want to know how it works:

 

<?php

/*ini_set ("display_errors", "1");
error_reporting(E_ALL);*/

include "includes/sql.php";

$id = 24;

$query = mysql_query("SELECT * FROM added_projects WHERE id = '$id'")or die(mysql_error());

$results = mysql_fetch_object($query);

$checkbox_qry = mysql_query("SELECT * FROM has_had_projects WHERE project = '" . $results->project . "'")or die(mysql_error());

$field = mysql_num_fields($checkbox_qry);

	for($i = 2; $i < $field; $i++) {
		$names = mysql_field_name($checkbox_qry, $i);
		$title .= $names . "<br />";
	}
	echo $title;

?>

Link to comment
Share on other sites

If you don't want to use the first two columns, don't ask for them in your query. Instead of

<?php
$checkbox_qry = mysql_query("SELECT * FROM has_had_projects WHERE project = '" . $results->project . "'")or die(mysql_error());
?>

do

<?php
$checkbox_qry = mysql_query("SELECT list,the,fields,you,want FROM has_had_projects WHERE project = '" . $results->project . "'")or die(mysql_error());
?>

Replacing "list,the,fields,you,want" with the real field names.

 

Ken

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.