i am using a Form where i am having a textbox which on submit i am retriving the value of the text box and sending it to a file which gets the value and using it to fetch the records..
benim javascript i gibi verdi
<script language="javascript" type="text/javascript">
function check()
{
var title=document.getElementById("title").value;
location.href="http://localhost/joomla/Joomla_1.5.7/testtest.php?title="+title;
}
</script>
Ve testtest.php dosyasında
i var
<?php
defined( '_JEXEC' ) or die( 'Restricted access' );
?>
<?php echo $_GET['title'];?>
<?php
$db =& JFactory::getDBO();
$keyword=$_GET['title'];
$query = 'SELECT * from #__chronoforms_UploadAuthor where text_6 like "%'.$keyword.'%"';
$db->setQuery($query);
$rows = $db->loadObjectList();
//echo $rows;
?>
ama bu sayfada onun .. Neden bu kadar Kısıtlı erişimli olarak beni gösteren? Ve bu nasıl üstesinden gelmek için .. Lütfen bana yardım edin ...