Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to do something like this but I keep getting errors in my program:

<?php

echo "
Some code
here "if(isset($_GET[\"cat\"]) && is_numeric($_GET[\"cat\"]))"
{ some code  }"


if($cat!= null && is_numeric($cat))
{
<select name=\"model\" onChange=\"autoSubmit();\">
<option value=\"model\">       Model</option>

$sql = \"SELECT * FROM model WHERE cat_id = $cat \";
$mode = mysql_query($sql,$conn) or die(mysql_error());

while($row = mysql_fetch_array($mode))
{
and here<option value=\"$row[mod_id]\" \" . ($model == $row[\"mod_id\"]? \" selected\" : \"\") . \">$row[model]</option>; 
}
</select>
}
"
?>

Can you please tell me why?

share|improve this question
2  
Give us the actual code, remove all some code – Mr. Alien Oct 13 '12 at 6:43
What are the errors? It may have to do with the missing ; at the end. – Eric Oct 13 '12 at 6:43
In short, it is not possible what you trying to do. You can't eat and breath at the same time. – itachi Oct 13 '12 at 7:33

closed as not a real question by ThiefMaster Oct 13 '12 at 11:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

5 Answers

up vote 1 down vote accepted

you want to echo the whole code? If not than use ; to terminate the statements.

use it like this

<?php

echo "Some code here ".if(isset($_GET[cat]) && is_numeric($_GET[cat]))."
{ some code  }".


if($cat!= null && is_numeric($cat))
{
    <select name="model" onChange="autoSubmit();">
    <option value="model">       Model</option>

    $sql = "SELECT * FROM model WHERE cat_id = $cat ";
    $mode = mysql_query($sql,$conn) or die(mysql_error());

    while($row = mysql_fetch_array($mode))
    {
         and here<option value=\"$row[mod_id]\" " . ($model == $row["mod_id"]? " selected" : \"\") . \">$row[model]</option>; 
    }
    </select>
    }
 ";
 ?>
share|improve this answer
yes I want to use the whole code, that's the task – eu loli Oct 13 '12 at 7:01
@euloli than use include(filename) and you can access the code. – Yogesh Suthar Oct 13 '12 at 7:03
can I include it in the echo "" ? – eu loli Oct 13 '12 at 7:05
what do you want to do with the code? to show it as text on page or for execution of page ?? – Yogesh Suthar Oct 13 '12 at 7:08
I want it to be used on the page, but in the echo " ". That's my task. I know it's absurd ! – eu loli Oct 13 '12 at 7:10
show 4 more comments

You wrote it?

But on a serious note - why not invest in a book on PHP and learn the language?

share|improve this answer
1  
+1 For this... the OP's code looks like an attempted amalgamation of 3-5 sample codes pasted from various blogs. – Eric Oct 13 '12 at 6:48

in first look its looks like the problem is that your whole code is in echo

share|improve this answer
3  
This made me LOL – Norse Oct 13 '12 at 6:47
@NullPointer, yes, the whole project is in echo. I have a project from a friend that was designed to work in echo, and I have to integrate my code in his and use his echo, otherwise I would change his code – eu loli Oct 13 '12 at 6:53
1  
@euloli I don't think you understand what echo is ... – Norse Oct 13 '12 at 6:57
@Norse I don't think you understand what's my problem. I have to use all that code with echo. That's the task. And I can't get the error the editor is giving to me on those lines. – eu loli Oct 13 '12 at 7:00
@euloli I can say with 100% certainty that you do not have to use all that code with echo. – Eric Oct 13 '12 at 7:02
show 3 more comments

Q: What is wrong here?

A: everything, including echo, mixed quotes, etc.

share|improve this answer

Code is in echo and if you are trying to print PHP, you need to escape some characters first like the dollar sign, etc.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.