Jump to content

[SOLVED] smarty error


alin19

Recommended Posts

i'm trying to use smarty and a javascript menu; what i must do because it points noting:

 

if i click on the html page it works

 

<?php

include('db.php');

include('smarty/Smarty.class.php');

 

$smarty=new Smarty();

$pagina = array();

 

$conn = new db();

$conn->open();

 

if (isset($_POST['submit']))

{

$nume_prenume=$_POST['nume_prenume'];

$id_bo=$_POST['id_bo'];

$cnp=$_POST['cnp'];

 

 

}

 

 

 

$smarty->template_dir="../templates/menu";

$smarty->assign('lang', $lang);

 

$smarty->display("index.html");

?>

 

 

 

 

{literal}

<HTML>

<!--

---------------------------------------------------------------------------

this script is copyright © 2001 by Michael Wallner!

http://www.wallner-software.com

mailto:[email protected]

 

you may use this script on web pages of your own

you must not remove this copyright note!

 

This script featured on Dynamic Drive (http://www.dynamicdrive.com)

Visit http://www.dynamicdrive.com for full source to this script and more

---------------------------------------------------------------------------

-->

<HEAD>

<META HTTP-EQUIV="Content-Type" CONTENT="text/html;CHARSET=iso-8859-1">

<TITLE>Outlook Like Bar Example - © 2001 www.wallner-software.com</TITLE>

</HEAD>

 

  <FRAMESET  cols = "130,*" frameborder=yes bordercolor=silver>

    <FRAME SRC="outlook.html" NAME="Links" SCROLLING="No">

    <FRAME SRC="../introducere_clienti.html" NAME="main" SCROLLING="AUTO">

  </FRAMESET>

 

<NOFRAMES>

<BODY>

</BODY>

 

</NOFRAMES>

 

</HTML>

  {/literal}

Link to comment
https://forums.phpfreaks.com/topic/122696-solved-smarty-error/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.