25 Posted Topics
![]() | Re: The code you posted works fine as you may no the problem is offcourse somewhere else. The PHP mailer is so simple here no doubt, so it should work. Have you tried it on any server or just on local machine? |
Re: Hey what you want to achieve in the industry it is called as **responsive web design** I guess you need to learn basic of responsive web design starting from the media css properties. /* Smartphones (portrait and landscape) ----------- */ @media only screen and (min-device-width : 320px) and (max-device-width : … | |
Re: Here is one link for your help http://blog.mwpreston.net/2011/11/24/moving-your-veeam-backup-replication-database/ | |
Re: A responsive website is much more than a desgin it focus on the all the devices not the smarphones only. Though it use the media css property to adjust itself. ANother thing about them is the menu which go in one. You can check on desktop itself if you website … | |
Re: why we need self clicbale button? It's not good Desgin as far user as well as website is concern. If you want some hidden action then do that there no need of self clickable button. | |
Re: The proper format is to do like this - background: url(image.jpg) #000 no-repeat; You can refers all the backgroudn action like you want to do with you web page checking out this - http://reference.sitepoint.com/css/background | |
Re: html, body { overflow:hidden; } .wrapper { overflow:hidden; } .main { overflow-y:scroll auto; } .sidebar > div{float:left; height:100% fixed;} .container .main{width:70%:} .container .sidebar{width:30%} to keep footer give fixed height to it. | |
Re: I thnik there is problem in the javascript. Better option i will give you to try this one - http://code.tutsplus.com/tutorials/how-to-paginate-data-with-php--net-2928 | |
Re: Hey scaasiboi Its' not necessary that we need to run two queries. But condtion is that there need to be some common so we can apply the join in sql. | |
Re: Hey ANdroid is current trends and PHP is along so ANdroid would be hot for you to pic. Let me tell you you go with the interest and the previous learning record of yours. For android you need the Java while PHP is stand alone. If you have felequnce in … | |
Re: Hey Benjamin_11 the demo there not working in Ubuntu Chrome. Is there any problem? Can you tell same example from othere source? | |
Re: Have your tryied in the PHPmyadmin the query works there? ALso i like to say try publishing the link in text more first then check if it getting displayed or not. IF yes than it need modifcation as suggested by diafol | |
Re: The first this is you are not using the OOP properly here. Just using in the function once. Try to have another function for waht you wrote the sql in the begining. I am not much pro in OOP but i know that you passing wrong no of parameter in … | |
Re: There are many ways you can create pagining. one of the asy and simple way to do is slpittiing data in set of page like we have on here - http://www.tutorialspoint.com/php/mysql_paging_php.htm The link would help you | |
My question is can we use the Document.write in a loop? As the following code doesn't works well. Guess what wrong in it! <script type="text/javascript"> var d = 1; var p; while (days <= 4){ p = prompt("value of p?",0); document.write("the value of p" + p); p=p+p; d++; }; </script> ![]() | |
Re: Can you show the error you getting? IF possible try this it may work out- RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php [NC] RewriteRule ^ %1 [R,L] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^(.*?)/?$ $1.php [L] | |
Re: Try writing the things in HTML rather in PHP like belwo it's may work - <select name='PageId' class="select"> <option value='0' >select any page</option> <?php $sql10 = "SELECT Id,Title FROM abc"; $rs = mysql_query($sql10) or die(mysql_error()); while($row = mysql_fetch_array($rs)){ ?> <option value="<? echo $row['Id']; ?>" > <? echo $row['Title']; ?></option> } … | |
Re: IF trying the above still not saving in the db there there must be some problem in you data type of tables row. check them! Are the error part working? Tell more about it Test with echo at different lables. | |
Re: Yeah You need to consider the web caching as well. Try empty your browser cache and then check the perfromace of the website manually while you can test throught the link given by Dani. I don't know but they may be using a better server caching | |
Re: Hi I belive cereal has clearly show the way it can be done. USe the substring fucntion and store the data in a json is ideal way of doing it. | |
Re: I found the discussion here more usefull in rewritng the url for seo purpose. http://stackoverflow.com/questions/18803615/htaccess-rewriterule-to-path-without-changing-url | |
Re: IS it not possibe for you to place trigger here? Try with trigger and event to make theme usefull | |
Re: solution is to get off the day part from the date and display 20 inplace of it. Like you did it so i Hope it a way but why you need to have something like that? | |
Hi! Everybody Here on Daniweb I am Sophia, Love to contribute here and meet new pople. I like to share my knowledge to all and also learn new things. I hope with huge communitty out here we have fun with learning while get to know new things and meet new … | |
Re: Why you are using the way it need not to. If you want just for iphone then have a diffrent css style for it and make it visible when the website run on device. Better idea is to used @media css in a responsive way as suggested by dany12. |
The End.