Jump to content

believeinsharing

Members
  • Posts

    47
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

believeinsharing's Achievements

Member

Member (2/5)

0

Reputation

  1. @ Manixat: Thx for reply I tried your code bt its not working
  2. @SocialCloud: thx for ur quick responce I did created .htaccess file and its has following code RewriteEngine on RewriteCond %(REQUEST_FILENAME) !-d RewriteCond %(REQUEST_FILENAME)\.php -f RewriteRule ^(.*)$ $1.php I got this form google.. I have .htaccess file in my page folder where i have all my php pages Directory of my website is: MainFolder thn it has subfolders for Images, Pages, Styles, and Lib Thx
  3. Hi I am developing one website its in PHP and I am using Eclipse When I click on any page link its shows "www............com/home.php or www............com/blog.php " in address bar where home and blog are my php pages I wanted to hide those php extenstions and would like to see only "www............com/home or www............com/blog" Is it possible and if yes how? Thx in advance for help
  4. I just need to add <br clear="left" /> it break thn seq n div is nw in next line thx for all help
  5. thx for ur reply My code is <h4 class="blogTitle"> <span style="float: right; width:auto;height:auto;">7</span> <a href="blogPage.php?srNo='.$row['srNo'].'">Title</a> </h4> <div id="blogBody"> <span style="float: left; padding:0px 10px 5px 0px;"><img src="C:\Users\Desktop\New folder\img\2.jpg"/></span> <div id="blogText">This is info</div> </div> <div id="jump-link"><a href="blogPage.php?srNo='.$row['srNo'].'"> See more...</a></div> <div id="blogFooter"> <div id="blogFooterLine1"> <span class="postAuthor">POSTED BY:</span> </div> </div> In above code i wanted to display img and div "blogText" side by side and div "jump-link" should be below img but i am case everything is right hand side of img
  6. Hi, I have one one span with id="imgPart" and div with id="infoPart". I am using span to show img and div to display text, If info is more (height is more than img height) page looking good but if text is short than other divs are coming up with img level. I would love to adjust the height of div with height of span(containing ) img. thx in advance
  7. Hi, Any one knows simple way to validate captcha? Thanks
  8. @Psycho: thx for reply, I am going that my contactus.php form has following code: if ($_SESSION['captchaError']==true) { echo "<p id='contErrorMsg' style='display: none;color:red;'>Please fill the required fields</p>"; } ?> and i m setting $_SESSION['captchaError'] value in send.php file when contactus page will reload it will check $_SESSION['captchaError'] value n base on tht will display or not above <p> my que is is their any way to check that page is loading first time or second time. Thanks in advance
  9. I am trying to add captcha to my contact us form.... I did that but I do have prob while validating captcha. As i know captcha validation should be on server side. my code is: <?php session_start(); $captcha=$_SESSION['captcha_code']; $ecaptcha=$_POST['code']; echo "actual captcha :".$captcha ."</br>"; echo "entered captcha:".$ecaptcha; $_SESSION['captchaError']==false; if ($ecaptcha==$captcha) { echo "right captcha entered"; } else { $_SESSION['captchaError']==true; echo "wrong captcha entered"; header('Location:contactus.php') ; } ?> because, I m using header('Location:contactus.php') it showing contactus.php directly without error msg; is their any other way to do this? thanks in advance
  10. I am trying to add online radios on my webpage.... I found some links which can play radios online , I embedded thm to my page but prob is some of them are start automatically once page load. importunately I have 2 radio links which start playing n because of that no is sounds good. I am trying to add following url http://player.streamtheworld.com/liveplayer.php?CALLSIGN=ARNCITY their is no option to pause it. thanks
  11. is their any way to open a popup window i php page. I want to click on a click and would like to open a page as a popup nt a new full page Thanks
  12. Hi, I am using eclipse for php development, but its very hard to solve php prob. So anyone knows good php debugger for eclipse or anyway to debug php file. Thanks
  13. Hi, I have seen some website pages where lets say; out of 35, first 10 records or forums are coming of first page. On same page they have link for next 10 records and so on. but in this case only some part of page is going to refresh not the whole page. is their any simple way to do this using php. Thanks in advance
×
×
  • 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.