Jump to content

chintansshah

Members
  • Posts

    244
  • Joined

  • Last visited

Everything posted by chintansshah

  1. 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.
  2. 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
  3. Hi Scottsmith, Are you talking about my website designs?
  4. 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.
  5. Nice color and font selection but pgae looks very empty in high resolution.
  6. php is case-sensitive language use lower case for php function MOVE_UPLOADED_FILE($uploaded, $need_file);
  7. 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.
  8. Hi gabriels, I am sure, you have problem with path, If you face problem in relative path then give absolute path.
  9. 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.
  10. have you written session_start(); at first line of the php file? If you write on both the files then debug $_SESSION variable.
  11. $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.
  12. <object width="416" height="374" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="ep"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="wmode" value="transparent" /><param name="movie" value="http://i.cdn.turner.com/cnn/.element/apps/cvp/3.0/swf/cnn_416x234_embed.swf?context=embed_edition&videoId=world/2009/06/28/penhaul.lok.honduras.cnn" /><param name="bgcolor" value="#000000" /><embed src="<?=$url?>" type="application/x-shockwave-flash" bgcolor="#000000" allowfullscreen="true" allowscriptaccess="always" width="416" wmode="transparent" height="374"></embed></object>
  13. I think, you should maintain flag to into the database to display it in list.
  14. 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'];
  15. Hey, Please change the format of date which you are passing in your query string. I think, It will help you.
  16. Use explode for fetch data. But not with "=" sign because you may get = sign in query string of url. better todo with "src="
  17. Hey dadamssg, I am agree with doni49, I faced problem with on the fly CSS file creation. Save it to DB is good option for dynamic CSS.
  18. or die() statement should continue after mysql_query.
  19. I don't find any error at my end.. I think, it's a correct code.
  20. use output buffering function to avoid such situation. For your reference http://php.net/manual/en/function.ob-start.php
  21. Hey, I can't see any values in your insert query, you just create quesry with column name not with values. To see Insert query syntax, use below link http://dev.mysql.com/doc/refman/5.0/en/insert.html
×
×
  • 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.