Search results

  1. diabolo

    Birthday

    so guys today is my birthday! I haven't opened any presents yet because well its 1AM here and im finishing up hw. so ill go to sleep for a couple hours wake up and hopefully get up in time for school. Ill post some gifts i get later on today.
  2. diabolo

    How does facebook do this?

    It first started with this: http://forums.x10hosting.com/programming-help/100402-how-does-facebook-do.html Misson was able to show me how to do it using isset(), but making a new if statement for each 'parameter' was very tiring and confusing. But misson also mentioned using array_keys() I...
  3. diabolo

    Should I get a MacMini

    I'm looking to get a new computer, currently I have a Dell XPS 400 and is quite old. It can run the basic stuff needed and maybe a couple games and Im running Windows XP on it. I wanted to get a laptop and since I liked how Macs are I wanted to get the macbook pro 15", but that was quite...
  4. diabolo

    Firefox to IE Help

    http://new.monmouthchineseschool.com can somebody help me get the navigation bar to be in one line? (like how it is in FF)
  5. diabolo

    Lockerz "How Much Longer" Calculation

    Latest Version: 11.04.09 So I have created an excel spread sheet to monitor my Lockerz progress, and calculate how long it would take to get a certain prize with various methods. Included in the .zip is the excel spreadsheet, there is two versions. [.xlsx ] [.xls] Any comments, suggestions...
  6. diabolo

    Need Website Ideas.

    Well for the past couple of years I have been working on and off, mostly off, on my portfolio site. And changing and re-changing the design scheme. But lately I have not been working on it at all, rather I got a project from a client. So I just decided to delete all my files for my portfolio...
  7. diabolo

    Similar Post Feature

    I think we should add this feature to the forums. If anyone has used StackOverflow, you should know what I'm talking about. Its when you are typing into the "Title" for a new topic, that any similar topics are display below, in an AJAX type of way. (picture the google suggest like search) I...
  8. diabolo

    Expand footer to bottom of page, if nessesary

    I want the grey footer's height to expand to the bottom of the page, if the content does not reach down all the way. I know they have ways for a fixed height footer to stick to the bottom but that's not what i need.
  9. diabolo

    Post JS Array to PHP

    I've googled this up already, but everything is very confusing for me. (I totally fail at JS) I have an array in JS, and I need to get it to PHP to process and dump the information into the database.
  10. diabolo

    JS jQuery datepicker Help Needed

    well im using this script right here: http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/ and I have a multiMonth(http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerMultiMonth3.html) plugin and multiple select...
  11. diabolo

    Fixing the CSS Overide

    1.jpg this has the .group .content table {width:620px; } enabled and I need for it to be like this 2.jpg
  12. diabolo

    Weird MYSQL_FETCH_ARRAY error

    function display_nextSession() { $today = strtotime(date("m/d/y")); $sql = "SELECT * FROM nextsession WHERE date>='$today' LIMIT 1"; $result = mysql_query($sql); $row = mysql_fetch_array($result); $nextDay = date("m/d/y", $row[1]); echo $nextDay; }Warning: mysql_fetch_array()...
  13. diabolo

    [1000] Need tutorial on how to setup and maintain an x10 VPS

    I've been racking my brain for the last couple days. I've bought a VPS from x10 and I still can't get it set up. So if someone could write a tutorial to set up a VPS on x10, and I can follow and configure my VPS I will pay 1000 x10 Credits. Some Specifications: needs to run Virtualmin. needs...
  14. diabolo

    can somebody explain this to me

    http://www.webmasterworld.com/forum83/100.htm I've been around CSS for quite a while, and I have never seen anything like p + p is it a legit css, is so, can somebody link/tell me more about it
  15. diabolo

    Another one of those header output problems.

    I have a language selection which first sees if $_GET['lang'] is set, or a cookie is set. <?php if (!defined('ROOT')) die; $text['english'] = "English"; $text['trad-chinese'] = "中文"; // here you add the languages. ob_start(); global $defaultLang; /*...
  16. diabolo

    Looking for the best possible AJAX/PHP Form Validation.

    I am looking for the best available form validation script there can possibly be. =] graceful degration (if the client does not have JS enables, go to PHP) cross-browser compatibility simple to install uses unobtrusive JS able to be used more than once. (object-orientated JS?) so far I've...
  17. diabolo

    How to make inserting a million rows into MySQL faster/more efficient?

    function createChancePool($organizationID) { $sql = "SELECT numChance FROM organizations WHERE id='$organizationID'"; $result = mysql_query($sql); while($row = mysql_fetch_array($result, MYSQL_ASSOC)) { $numChances = $row['numChance']; } $table = "chancePool_$organizationID"; $sql = "DROP...
  18. diabolo

    How come PHP is not insertting my data into MySQL?

    register.php <?php include ('config.php'); ?> <html> <head> <title>Menu Maniac</title> <LINK REL=StyleSheet HREF="style.css" TYPE="text/css" MEDIA=screen> </head> <body> <div id="width"> <?php if (isset($_POST['Submit'])) { $fName = check_input($_POST['fName']); $lName =...
  19. diabolo

    How does facebook do this?

    http://www.facebook.com/inbox/?compose&ref=mb how does FB pass "compose" in php? because the variable compose is not set to anything.
  20. diabolo

    How do I hide the javascript on a link?

    http://www.tutorials-db.com/article/Coding_a_Smooth_CSS_Expanding_Navigation/ Im working with that tutorial right now. the only thing that I do not like about it, is when you are over a top level button. that it displays the javascript function to run. is there a way to just make it display #
Top