Search results

  1. jspcodes

    default.php not working

    when i type www.tgmc.info it is not redirected to www.tgmc.info/default.php instead it loads all the files of the directory. Please correct it. Thanks for the free service. But i need my site to be corrected soon. Thank u.
  2. jspcodes

    My site not redirected.

    Yesterday my site was properly redirected to home page www.tgmc.info/default.php when i type www.tgmc.info but now it is not redirecting. When the admin updated the php version. Have you added default.php in config file. Please help me what should i do to redirect properly Edit: It is...
  3. jspcodes

    What is this credit system

    What happens when we have more credits. what can i do with credits. Can i buy i domain. I have no idea regarding this. Please help me. If i am too silly, please excuse me.
  4. jspcodes

    How to store images in a MySQL database

    Every thing is fine. But instead of using BLOB, one could store the image in the folder in the server and move the relative link to database table. IBM appreciated me for doing this in my project. They told me it has several advantages, like it avoids the database getting bigger & bigger.
  5. jspcodes

    PHP MYSQL photogallery table help

    try some thing like this http://slideshow.triptracker.net/howto.html I recommend to store the file in the server and move the link to database instead of using BLOB. Sorry if i am wrong.
  6. jspcodes

    SEO help !!

    Some tips that i use. 1.Google considers title tag as important thing than meta tags 2.Url should contain some relavant search terms for example http://www.tgmc.info/forums/viewcategory.php?category=5&name=Db2/SQL is better than http://www.tgmc.info/forums/viewcategory.php?category=5 because...
  7. jspcodes

    help on social network

    Try some google gadgets. They have something interesting, u can insert the gtalk chat in your website like that of in Gmail. http://www.google.com/ig/directory?synd=open&source=gghp
  8. jspcodes

    SQL return data type

    $str= $row['fieldname']; $array=(explode(',', $str)); for($i=0;$i<count($array);$i++) { echo $array[$i]."<br>"; } Sorry if i am wrong.I cannot understand your problem exactly
  9. jspcodes

    How to redirect my domain

    Hello I have bought a domain in godaddy.com my domain name is www.tgmc.info and i have hosted my site at http://jspcodes.elementfx.com . I need to redirect www.tgmc.info to jspcodes.elementfx.com but the url should be like this www.tgmc.info/default.php Please help. Thanks in advance Edit...
  10. jspcodes

    My E-Books site

    Sir I will remove that books section. It is additional thing, for my site. My primary thing is to post in forums designed by me. Please unsuspend my account. I have spent lot of time in learning PHP and designed forums by myself. I will remove the books section immediately you activate my...
  11. jspcodes

    My E-Books site

    http://jspcodes.elementfx.com Go to the E books section highly useful for web developers and newbies
  12. jspcodes

    SQL all but one field

    what gaming moderator said correct. You may use select * from and neglect the field alone. The query would be much simpler.
  13. jspcodes

    php include unreliable

    Though i am not clear about the question. the half answer is <?php echo "<html><body><div id='ele1'>f.php</div></body></html>"; ?> and name that as f.php and include as include "f.php"; Visit me at http://jspcodes.elementfx.com
  14. jspcodes

    POST without submit

    Session variables should be used for important things like userid which is needed for all pages and hence it can be used as session variable. But for small purposes $_REQUEST['variable'] is enough example http://yoursite.com/page1?name=somename in page1 <?php echo $_REQUEST['somename']; ?>...
  15. jspcodes

    Adsense google search!

    Try to correct the results page. i.e there are two parts of the code 1.code that displays search 2.code which displays the results in different page in the 1 part of code u need to give the second page location correctly, else the search won't work. Ensure that you give proper file name like...
  16. jspcodes

    All details regarding Bux

    The procedure seems to be very simple with this earning system.Steps to be done for earn money 1.Register for an account 2.They pay via Alert pay (Similar to Pay pal). So u have to register there first. 3. while registering in bux it will ask for alert pay email and the minimum payout is 10$...
  17. jspcodes

    E-mail In PHP

    Problem solved. Thanks a ton man. But it only works with yahoo. Not good enough to get bid rid of hotmail. <?php include("class.phpmailer.php"); //include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded $mail = new PHPMailer()...
  18. jspcodes

    E-mail In PHP

    Your close to the solution. But this is not the exact solution. If we use SMTP with authentication then we can clearly overcome all problems even yahoo or hotmail. Gmail gives free smtp with authentication of gmail username and password can be used for this too. And the default port 25 is not...
  19. jspcodes

    E-mail In PHP

    Sir we can solve this problem of mail getting into spam. i have programmed in JSP where mail goes directly to inbox where i use gmail smtp. I think mail function is insecure because it has less header so yahoo treats as spam. I think if we use even x10hosting smtp we can overcome the problem...
  20. jspcodes

    E-mail In PHP

    Hello I am urgently in need of sending E-mail in PHP. I have been using mail function for long time. But the mail is going inside spam in yahoo. How to avoid this one. Do you have code for using gmail smtp or can i use the smtp of x10hosting.com or mail function in php can be corrected by...
Top