31-03-2009, 00:41
|
|
|
חבר מתאריך: 06.06.07
הודעות: 749
|
|
<?php מודפס כתווים ולא כ סקריפט
מה המצב
אני עובד עם AJAX באתר שלי
כשאני מושך תוכן מסויים כל מה שאמור להיות סקריפט מופיע לי כתווים
זה הקוד
קוד PHP:
echo '<form method="post">'; echo '<input type="hidden" id="publishnewevent" name="publishnewevent" value="publishnewevent" />'; echo '<table>'; echo '<tr>'; echo '<td><div align="center">הודעה</div></td>'; echo '<td>'; echo '<div align="right">'; echo '<?php'; echo 'include("../../globalfunctions/event/selectkindofevent.php");'; echo 'selectkindofevent($_SESSION['.$p.'newevent_kindofevent'.$p.'],$_SESSION['.$p.'language'.$p.']);'; echo '?>'; echo '</div></td>'; echo '<td><div align="left">סוג אירוע</div></td>'; echo '</tr>'; echo '<tr>'; echo '<td rowspan="6" style="vertical-align:top;"><div align="right">'; echo '<textarea dir="rtl" cols="30" rows="9" id="textareaevnetmessage" name="textareaevnetmessage"><?php echo $_SESSION['.$p.'newevent_message'.$p.']; ?></textarea>'; echo '</div></td>'; echo '<td>'; echo '<div align="right">'; echo '<?php'; echo 'include("../../globalfunctions/time/selecttime.php");'; echo 'selecttime($_SESSION['.$p.'newevent_time'.$p.'],$_SESSION['.$p.'language'.$p.']);'; echo '?>'; echo '</div></td>'; echo '<td><div align="left">שעה</div></td>'; echo '</tr>'; echo '<tr>'; echo '<td>'; echo '<div align="right">'; echo '<?php'; echo 'include("../../globalfunctions/date/selectdate.php");'; echo 'days($_SESSION['.$p.'newevent_day'.$p.'],$_SESSION['.$p.'language'.$p.']);'; echo "echo ' / ';"; echo 'months($_SESSION['.$p.'newevent_month'.$p.'],$_SESSION['.$p.'language'.$p.']);'; echo "echo ' / ';"; echo 'years($_SESSION['.$p.'newevent_year'.$p.'],$_SESSION['.$p.'language'.$p.']);'; echo '?>'; echo '</div></td>'; echo '<td><div align="left">תאריך</div></td>'; echo '</tr>'; echo '<tr>'; echo '<td><div align="right">'; echo '<input type="text" id="texteventcity" name="texteventcity" style="width:200px;" value="<?php echo $_SESSION['.$p.'newevent_city'.$p.']; ?>" />'; echo '</div></td>'; echo '<td><div align="left">עיר</div></td>'; echo '</tr>'; echo '<tr>'; echo '<td><div align="right">'; echo '<input type="text" id="texteventstreet" name="texteventstreet" style="width:200px;" value="<?php echo $_SESSION['.$p.'newevent_street'.$p.']; ?>" />'; echo '</div></td>'; echo '<td><div align="left">רחוב</div></td>'; echo '</tr>'; echo '<tr>'; echo '<td><div align="right">'; echo '<input type="text" id="texteventnumber" name="texteventnumber" style="width:200px;" value="<?php echo $_SESSION['.$p.'newevent_number'.$p.']; ?>" />'; echo '</div></td>'; echo '<td><div align="left">מספר</div></td>'; echo '</tr>'; echo '<tr>'; echo '<td><div align="right">'; echo '<input class="button-submit" type="submit" id="subnewevent" name="subnewevent" value="שמור והפץ אירוע חדש" />'; echo '</div></td>'; echo '<td><div align="left"></div></td>'; echo '</tr>'; echo '</table>'; echo '</form>';
|