vendredi 6 juin 2014

Calling a script not working in php file


Vote count:

0




I have small project in which i have different news.I have predefined root structure in which i cannot make changes.I have javascript file which i want to include in this php file so that when you click on the news the new page will open with the complete news detail.If i am able to include my javascript in this php file everything will work fine.But I am not able to include this javascript in this php file. Any help.Thanks. Here is my code: news_all.php



<?php
chdir('..');
include 'constant/const_system.inc.php';
include 'functions/ad_json.inc';
include 'functions/ad_formulare.inc';

$page['doctype'] = true;
$param = array_merge($_GET, $_POST);

$return = array();
if($param['aktion'] == 'get-news')
{
$page['register-news'] = array(
1 => array( 'News','aktiv',$page['script'],'',''),
);

$html =
'
<body bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">

<tr>
<td class="welcome-page-hint">

<table width="538" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>

<a href="news.php?id=" class="TrackNews" id="01">
<div class="welcome-rahmen lng toggleNews" id="news_269_kurz">
<p class="welcome-breadcrump">Montag, 19.05.2014</p>
<p class="welcome-subheadline">Teilnahme von MAN Top Used an der Samoter 2014</p>
<div class="newsText">
<p class="welcome-text"><img src="http://ift.tt/1kAWSG5" width="165" class="text_fixed" border="0"></p>
<p class="welcome-text">Die 29. Internationale Erd- und Bautechnik-Ausstellung Samoter fand zwischen dem 8. und 11. Mai in Verona statt und zog rund 100.000 Besucher an. Samoter ist die wichtigste italienische Messe ihrer Art, die den Themen Erdbewegung, Hochbau und Baumaschinen gewidmet ist. Zugleich ist diese Veranstaltung damit auch f? europ?chen Markt bedeutsam.</p>
</div>
</div>
</a>

<a href="news.php?id=" class="TrackNews" id="02">
<div class="welcome-rahmen lng toggleNews" id="news_264_kurz">
<p class="welcome-breadcrump">Freitag, 24.01.2014</p>
<p class="welcome-subheadline">Kaufvertrag: neue Porsche-Vorlage zum Drucken!</p>
<div class="newsText">
<img src="http://ift.tt/1kAWPtG" border="0" align="right" class="img_fixed" width=60><p class="welcome-text">Ihr AMO Druckcenter bietet Ihnen ab sofort die M?chkeit, Kaufvertr? im Porsche-Design zu nutzen.</p>
<p class="page-breadcrump">AutoDo!-Team</p>
</div>
</div>
</a>
</td>
</tr>
</table>

</td>
</tr>

</table>';
$return = array(
'status' => 1,
'html' => $html
);

echo(json_encode($return)) ;
}
?>


Here is my script file which i want to include in news_all.php file:



<script type="text/javascript" src="/admin/includes/js/news_all.js"></script>


asked 1 min ago






Aucun commentaire:

Enregistrer un commentaire