Jump to content

My code is broken *somewhere*


JNew
Go to solution Solved by mac_gyver,

Recommended Posts

I have a recipe site and I want the user to have the option to edit the recipe they're viewing. The code for the page where they can see the recipe looks like this:

<!-- START THE TEMPLATE -->
<?php
	$id = $_GET['id'];
  	$sql = "SELECT id, category, bilde, title, duration, servings, ingredients, directions FROM oppskrift_table WHERE id=$id";
	$result = mysqli_query($con, $sql);
	if($result) {
		while($row = mysqli_fetch_assoc($result)){
	?>
<div class="container" style="margin-top:3%;">
  <div class="row product">
    <div class="col-md-5 col-md-offset-0"><img class="img-responsive imgSpace" src="bilder/rBilder/<?=$row['bilde']?>" width="400" alt=""></div>
    <div class="col-md-7">
      <h1>
        <?=$row['title']?>
      </h1>
      
      
<!-- EDIT BUTTON -->
<a href="edit.php?id=<?=$row['id']?>" class="btn btn-sample btn-primary btn-sm pull-right">Edit   <span class="glyphicon glyphicon-pencil"></span></a>


      <p style="line-height:200%;"><img src="bilder/misc/time.png" width="25" height="25" style="margin-right:2%;"/>
        <?=$row['duration']?>
      </p>
      <p style="line-height:200%;"><img src="bilder/misc/servings.png" width="25" height="25" style="margin-right:2%;"/>
        <?=$row['servings']?>
      </p>
    </div>
  </div>
  
  
  
  <div class="col-lg-6">
    <div class="page-header">
      <h3>Ingredients:</h3>
    </div>
    <p>
      <?=$row['ingredients']?>
    </p>
  </div>
  <div class="col-lg-6">
    <div class="page-header">
      <h3>Directions:</h3>
    </div>
    <p style="line-height:185%;">
      <?=$row['directions']?>
    </p>
  </div>
</div>
<br>
<?php
			}
		}
?>

And the code to edit the recipe looks like this:

<?php
include 'connect.php';
if(isset($_POST['btn_submit'])){
      $sql = "UPDATE oppskrift_table SET category = '".$_POST['txt_category']."',
                        bilde = '".$_POST['txt_bilde']."',
							title = '".$_POST['txt_title']."',
								duration = '".$_POST['txt_duration']."',
									servings = '".$_POST['txt_servings']."',
										ingredients = '".$_POST['txt_ingredients']."',
											directions = '".$_POST['txt_directions']."'
               WHERE id = '".$_POST['id']."'   ";
     if(mysqli_query($con, $sql)){
        echo "<script> alert('Success!');
window.location.href='edit.php';
</script>";
     }else{
        echo "An error has occurred. Please go back and check the code: ".mysqli_error($con);
     }
    }

	$id = '';
    $category = '';
    $bilde = '';
    $title = '';
	$duration = '';
	$servings = '';
	$ingredients = '';
	$directions = '';
	
    if (isset($_GET['id'])){
        $sql = "SELECT id, category, bilde, title, duration, servings, ingredients, directions FROM oppskrift_table WHERE id=".$_GET['id'];
        $result = mysqli_query($con, $sql);
        if(mysqli_num_rows($result) > 0){
          $row = mysqli_fetch_assoc($result);
          $id = $row['id'];
          $category = $row['category'];
          $bilde = $row['bilde'];
		  $title = $row['title'];
		  $duration = $row['duration'];
		  $servings = $row['servings'];
		  $ingredients = $row['ingredients'];
		  $directions = $row['directions'];
        }
        
    }

?>
<div class="container-fluid" style="width:60%; margin-top:3%;"> 
  <!-- Form Name -->
  <legend>Edit a Recipe</legend>
</div>
<!-- INSTRUCTIONS -->
<div class="container-fluid" style="width:58%; background-color:#ffffff;">
  <p class="small" style="margin-top:1%;"><strong>Note:</strong> Entries are html dependent. Common tags to copy and paste:</p>
  <br>
  <table class="table small">
    <thead>
      <tr>
        <th class="smaller">Code</th>
        <th class="smaller">Result</th>
        <th class="smaller">Code</th>
        <th class="smaller">Result</th>
      <tr> </tr>
    <td class="smaller"><br> </td>
      <td class="smaller"><em>line break </em></td>
      <td class="smaller">&Prime; </td>
      <td class="smaller"><em>inches symbol </em></td>
    </tr>
    <tr>
      <td class="smaller">&deg; </td>
      <td class="smaller"><em>° symbol </em></td>
      <td class="smaller"><b> </td>
      <td class="smaller"><em>bold text </em></td>
    </tr>
    <tr>
      <td class="smaller"> class="b0" </td>
      <td class="smaller"><em>style for lists <ul>, <li>, etc.</em></td>
      <td class="smaller">&prime; </td>
      <td class="smaller"><em>apostrophe </em></td>
    </tr>
  </table>
</div>

<!-- FORM -->
<div class="container-fluid" style="width:60%; margin-top:3%;">
  <form action="" method="post" class="form-horizontal">
    <fieldset>
      
      <!-- Category -->
      <div class="form-group">
        <label class="col-md-4 control-label">Category</label>
        <div class="col-md-4">
          <input id="txt_category" name="txt_category" value="<?=$category?>" type="text" placeholder="" class="form-control input-md">
        </div>
      </div>
      
      <!-- Bilde File -->
      <div class="form-group">
        <label class="col-md-4 control-label">Bilde File</label>
        <div class="col-md-4">
          <input id="txt_bilde" name="txt_bilde" value="<?=$bilde?>" type="text" placeholder="" class="form-control input-md">
        </div>
      </div>
      
      <!-- Title -->
      <div class="form-group">
        <label class="col-md-4 control-label" for="txt_title">Title</label>
        <div class="col-md-4">
          <input id="txt_title" name="txt_title" value="<?=$title?>" type="text" placeholder="" class="form-control input-md">
        </div>
      </div>
      
      <!-- Duration -->
      <div class="form-group">
        <label class="col-md-4 control-label" for="txt_duration">Duration</label>
        <div class="col-md-4">
          <input id="txt_duration" name="txt_duration" value="<?=$duration?>" type="text" placeholder="" class="form-control input-md">
        </div>
      </div>
      
      <!-- Servings -->
      <div class="form-group">
        <label class="col-md-4 control-label" for="txt_servings">Approx. Servings</label>
        <div class="col-md-4">
          <input id="txt_servings" name="txt_servings" value="<?=$servings?>" type="text" placeholder="" class="form-control input-md">
        </div>
      </div>
      
      <!-- Ingredients -->
      <div class="form-group">
        <label class="col-md-4 control-label" for="txt_ingredients">Ingredients</label>
        <div class="col-md-6">
          <textarea style="height:200px;" class="form-control lrgTextAreas" value="<?=$ingredients?>" id="txt_ingredients" name="txt_ingredients"></textarea>
        </div>
      </div>
      
      <!-- Directions -->
      <div class="form-group">
        <label class="col-md-4 control-label" for="txt_directions">Directions</label>
        <div class="col-md-6">
          <textarea style="height:200px;" class="form-control lrgTextAreas" value="<?=$directions?>" id="txt_directions" name="txt_directions"></textarea>
        </div>
      </div>
      
      <!-- Button -->
      <div class="form-group">
        <label class="col-md-4 control-label" for="btn_submit"></label>
        <div class="col-md-4">
          <button id="btn_submit" name="btn_submit" class="btn btn-primary">Submit</button>
        </div>
      </div>
    </fieldset>
  </form>
</div>

The problem is that the edit page will populate the info into the form only until the end of the ingredients section. It will look like this on the page:

error.jpg

 

 

Somewhere in my code there is an error that's preventing the rest of the info (the directions section) from populating in the edit form. (It looks like a misplaced quotation mark since that's where the trouble starts.) I cannot find the error for the life of me. ?

 

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.