Search results

  1. xav0989

    What is your biggest USB stick?

    mine was 4gib... but I was missing .5gib to copy vista's dvd on it...
  2. xav0989

    Joomla 1.5 "x10 hosting ads" module here

    You'll have to update your script. There is no more personal code, nor static plan. Anyways, I've made an updated copy.
  3. xav0989

    How to insert ads in BUGS 2

    In the top directory of your bugs installation, find the directory called 'include'. In there, find the file called 'header.inc.php'. Open it. Find the line <td style="width: auto;">(line 127 or so). Add the line <div id="pubs_top" style="float: left; padding: 5px;"><script...
  4. xav0989

    JS files...

    Well, it's always an issue, but not as much important. (loading speeds, that is)
  5. xav0989

    Edit .php page with a form

    BTW, you should use the header function, not a meta redirect.
  6. xav0989

    PHP MYSQL Connect

    You could create a xmlrpc server on your database server to fetch data...
  7. xav0989

    PHP header() problems

    Try to write a completely knew test.php file.
  8. xav0989

    News Feeder

    That is a blog, such as wordpress, blogger, etc. Just like that, let me tell you that I find the layout a bit overwhelmed...
  9. xav0989

    Comments on Webdesign

    the first one, definitely
  10. xav0989

    Newsletter or eMagazine?

    emagazine, but once every month, not twice!
  11. xav0989

    if()

    yes, AND is && and OR is || @xPlozion: Was about to right pretty much the same thing...
  12. xav0989

    Line-Height?

    no problem for me...
  13. xav0989

    New Update Scipt?

    I created my own administration interface to post news to my website, but it was developed for my website, put basically it's an admin interface with pages to add, remove, approve, edit news entry, and the news script which loads the requested news from the DB and applies it to the template.
  14. xav0989

    Picture of the week script

    I've visited it. Basically you need a script to put the best rated picture as picture of the week. If so, well to build a script, we need access to your webspace (FTP) and to you database (PHPMyAdmin).
  15. xav0989

    if()

    Not to contradict you, but when you work on projects with dozen of 1000 lines pages, you prefer the one line statements, although to indent everything might seem nicer.
  16. xav0989

    NullPointException

    BTW, for the users function, you can do this: function users($method_name, $params, $app_data) { $dexist = mysql_query("SELECT * FROM `users`")or die(mysql_error()); while($nick1 = mysql_fetch_array($dexist)){ $nicks[] = $nick1["nick"]; } return $nicks; }
  17. xav0989

    What is the best designed site you've seen?

    I'd have to say the apple website http://www.apple.com it's minimalistic, and only includes what you need to see. The top navigation bar is simple. And they don't use to many colors. They use white and shades of grey.
  18. xav0989

    Testcase for UniDB

    I am not sure where to exactly put this thread, so I've put it here. Basically what I am asking is some tester to test out a php database connection layer I'm writing. As the time of posting, only the mysqli part is fully implemented, put the mysql, pgsql and mssql parts are working, though...
  19. xav0989

    if()

    syntax readability wise, it's better to use one line for everything when there is one command if(argument) action; and braces when there is many commands if(argument){ action1; action2; }
  20. xav0989

    recompile php in xampp

    I believe that you can download additional packages, and add them.
Top