Hello, I have installed joomla 1.15.x and I have installed RSForm plugin for form, I want to integrate form and article content in same page. like on contact us page, I have some content also and one inquiry form also. How I can add both in single page? it's urgent.
You should use alias in mysql query.
Ex. Select table1.city_id as city_id1, table2.city_id as city_id2 from table1,table2
So, you will get $row['city_id1']; and $row['city_id2']
It will work
Your site taking to much time on slower Internet connection, I have 128 kbps, I think, you should implement gzip compression in apache, because Javascript looks heavy.
Hi youri,
I think you should check in your html form also where you have taken password field name. Please confirm element name.
This was happened with me.
write below code after session_start();
<?php
session_start();
echo "<pre>";
print_r($_SESSION);
echo "</pre>";
?>
After that, you can find out session values on screen.
$sql2 = mysql_query("SELECT * FROM Members WHERE id='".$_POST['$looking_for']."' LIMIT $pn, $itemsPerPage");
Remove () brackets, you have write $ sign above "looking_for", please remove it and try again.
You can save your search criteria in session.
$_SESSION['where_caluse'] = " WHERE word LIKE '%".$search."%'";
$result = mysql_query("SELECT word FROM pro_words ".$_SESSION['where_clause']);
Get session value in word.php file your query looks like
$query = "SELECT word,word_type1,sentence1,word_type2,sentence2,word_type3,sentence3 FROM pro_words".$_SESSION['where_clause'];
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.