Search results

  1. dickey

    Love Literature

    Try to change the background color of the header, something that would complement your logo and to make it shine. Or try to put some text after the logo maybe something like Home to prose, and poetry... and anything and everything literature... of course you can change the words...
  2. dickey

    Can money buy true happiness?

    I for one came from a third world country, now I reside in a first world country. to tell you the truth I came to where I am now in pursuit of money, but in the end when I had money I cannot even relieve the stress that I feel. but to answer the question... Money can make us happy... Really...
  3. dickey

    FOR COREY :P (didn't know where to post this)

    So Corey where did you go for your honeymoon that would merit the jet lag? or does jet lag also happen when you don't sleep enough at night? hmmmmm I wonder why?!?
  4. dickey

    The Ctrl+V game

    http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=1786&lngWId=8 I had that in mine.
  5. dickey

    Vending Machine (Game)

    you got banned from a game for being incoherent. I insert myself without the 'ey' at the end. :)
  6. dickey

    x10 Rewards Returning Soon

    Great news! Are you back from your honeymoon yet Corey? You're having way too much fun now. ;-) edit: can we spend reputation points too?
  7. dickey

    Php

    I can help you but it isn't javascript and it isn't php. If you are interested I can help you with a css/html dropdown menu. But I guess it works well when using strict Html. If you are interested post here again. :) edit: Seeing that you need a vertical one. hmmm. I need to do a...
  8. dickey

    php help

    $username = 'saxon'; //you forgot the semi-colon here... and the quote to tell it it's a variable $query_string="SELECT * FROM user_info WHERE username = '$username' LIMIT 1" $ui_query = mysql_query($query_string); //sometimes this works. //insert this code here to prevent some errors I guess...
  9. dickey

    How did you learn PHP

    If you have basic knowledge of c or c++ it should help you with syntax. The book I used is "PHP, MySQL and Apache" with ISBN 0-672-32873-9 It is one of those sam's Teach Yourself books. I particularly like the way it is organized. It gives you a little of everything and that is all you will...
  10. dickey

    ingresarle ajax a una animacion flash

    Translation: Spanish » English good evening I will cite an example of the problem I have in joomla: I have a flash banner, and when I click on a link to me again to update the animation, how can I do to update the animation and left in the frame to leave it ... I do not know if it is...
  11. dickey

    no scroll

    no problem, anyway please close this thread.:)
  12. dickey

    Tafe Student - Streeware clothing site

    good work man. I like your layout. a bit lacking in content and I believe you removed the scrollbars right? but where does all those javascript questons you asked fit in this page? hehehe just kidding now I will tell you you're even better than me. I suck at design.
  13. dickey

    [PHP] Using it in forms!

    if ((!isset($_POST['user'])) || (!isset($_POST['pass'])) || (!isset($_POST['email'])) ) { $error="You did not complete all of the required fields"; } else { $user=$_POST['user']; $pass=$_POST['pass']; $email=$_POST['email']; //as the posts above this...
  14. dickey

    no scroll

    okay I went through the code. your problem is with IE right. <head> ... ... ... </head> <body onload="MM_preloadImages( 'http://webvertising4free.com/MFPOI/Images/picsequenceX.swf', 'http://webvertising4free.com/MFPOI/Images/header3.jpg'...
  15. dickey

    php help

    check this code out. it isn't much different from what you posted. but look carefully and you see that you missed out on two semi-colons that signal the end of a command line. which will treat the unterminated line and the next line as one line of command hence the T_VARIABLE ERROR. <html>...
  16. dickey

    need help with index.html

    I think you can modify your .htacces directoryIndex index.php instead of html
  17. dickey

    Selection box size

    How did you know? did you ask him? did you even read what was posted? hehehe why not try to create code for that I heard your good with this stuff.
  18. dickey

    Selection box size

    okay right now I can help you by providing this link. http://www.dhtmlx.com/docs/products/dhtmlxCombo/index.shtml check the site there is a free version. and it can give you idea on how to make your own.
  19. dickey

    PHP And HTML Div Tags

    try changing your include syntax. include ("blah.php"); //to include "blah.php"; see if this works. if not try require.
  20. dickey

    [PHP] Using it in forms!

    Try this code. <?php require_once "config.inc.php"; $error=""; $submit=$_POST['submit']; if($submit) { $user=$_POST['user']; $code=$_POST['code']; $result=mysql_query("SELECT count(*) FROM 'login' WHERE (username = '$user', active = '$code')"); }...
Top