Jump to content

jhecht

Members
  • Posts

    608
  • Joined

  • Last visited

About jhecht

  • Birthday 05/10/1990

Previous Fields

  • Languages
    PHP, Javascript, CSS, HTML, Flash(so-so), Java(bit),C++(ok),XML,XSL(T)

Contact Methods

  • AIM
    jhechtf
  • MSN
    jhechtf@hotmail.com
  • ICQ
    0
  • Yahoo
    jhechtf

Profile Information

  • Location
    California

jhecht's Achievements

Invested Member

Invested Member (3/7)

0

Reputation

  1. I don't use the same color as he w3forums... that is the prosilver design that comes with phpBB3... which really doesn't look like this one at all.
  2. Site Name: Jhecht's PHPBB3 test forumSite Description: A test forum that i set up when phpBB 3 was still in beta stages. It has since gotten out of the beta stages, but i keep the site around because i use it as a mod-development board. Site Owner/Developer: MeSite Address: http://jhecht.xtreemhost.com/ Extra Comments: It's really nothing fancy, but I do plan on integrating a CMS(Content-Management-System, for the newer people) into phpBB3. Feel free to sign up, it helps me test user permission sets and other things(since when i login im a moderator/admin, some of the mod pages i make require a non-admin user to double check that people can't get access to admin/moderator only pages) I'll post up my personal site when I set up my server again(I had to move it from the garage, just too much of a pain to try and manage it from over my room).
  3. The saying is from Thomas Edison and it states

    "I did not fail 1000 times, I just found 1000 ways to NOT make a lightbulb."

    But Justsomeguy is a smart person

  4. Not to be mean, but if you know javascript at all, in any way, then you should know how to use this; If you don't, then whats the point in you reading and/or replying? If you don't know javascript, then don't complain to us that you can't figure out how to use it. Figure out basic javascript syntax(because this is quite honestly a very BASIC example), and THEN complain that something doesn't work.
  5. jhecht

    OOP

    why do you want to go to oop? what exactly do you think the difference is.
  6. so do you just want like this.php to be displayed as this?
  7. jhecht

    Connection Issues

    you also dont need .db in the table name. MySQL databases are not stored in [server] directories. Mind you they are stored in a directory somewhere, just not one that someone can access. So you dont need a .db.
  8. Or you could use mysql_result... but i would advise staying away from that.the syntax however, would be something like : $sql = "SELECT * FROM table";$ans= mysql_query($sql) or die(mysql_error());$res= mysql_result($ans,0,'column') or die(mysql_error());
  9. <?phpecho "<a href=\"somesite.com/topic=".$topicID."&thread=".$threadID."\">Link text</a>";?>Try this... other then that try replacing & with &
  10. im doing it now. PHP and AJAX are good 2gether
  11. jhecht

    help!

    I dont think anyone understands what you need. If i had to guess then this would be what im guessing you wantSELECT * FROM table WHERE websiteID=1Replace 1 with whatever number you need.
  12. <?php$objData = new PReport($db);$id =(int)$_GET['id'];$sWhere = "WHERE id = $id";//integers dont need quotes around them$objData->load(false, false, $sWhere);//Im assuming objDataload was meant to be objData->loadwhile ($res = $objData->fetch()){$app=$res->getStatus();if($app =='pending' || $app=='cancelled'){echo '';}else{ ?><tr><td class="txtRegular" style="border-bottom:#999999 solid 1px"><?php echo " ". $res->getID(); ?></td><td height="36" class="txtRegular" style="border-bottom:#999999 solid 1px"><?php echo " ". $res->getDate(); ?></td><td style="border-bottom:#999999 solid 1px" class="txtRegular"><?php echo " ". $res->getCity();?></td><td style="border-bottom:#999999 solid 1px" class="txtRegular"><?php echo " ". $res->getState();?></td><td style="border-bottom:#999999 solid 1px" class="txtRegular"><?php echo " ". $res->getDetails();?> </td></tr><?php }}?> for the love of god look up hereDoc syntax. I hate it when while's have code split between 2 sections of php code. Its just ugly to have to read and go through. look up here doc, please.If that doesnt work then you may need to post up the code for the definitions of PReport
  13. Just dont learn VB.net, seriously. dont. i advise 100% against it.And i dont see how the fact that there are different branches of XML makes it the future. Once you learn basic syntax of RSS its pretty easy to figure out from there. once you get RDF and ATOM, again pretty easy. XSL is self explaintory in my book. I dont read tutorials, i read basic syntax and from there i figure it out myself. Do's and donts are easier to find when your browser is yelling at you becuase you messed up in the XSL somewhere rather than being babied by a book. I hate that, when people get books to try and learn something and then in real life when they try it they say "well this wasnt in my book so i dont know what to do" its to me like "if you need your book, you shouldnt be programming" And as for the W3C, they will try to fade out XML, but it wont work. I am not the only one who sees XML as pointless, im sure a very large population of the web programmers and developers agree with me(maybe not on this sight, but they are out there) and if W3C tries it, there will be an uproar in protest sites, mean things done to w3c's server, and so on and so on. They can try, but it wont happen. Possibly stricter XHTML, but XML will not completely absorb (X)HTML So restating what i told you earlier Tns, dotnlearn Vb.net. Its a waste of time and typing.
  14. No offense to you dude, but what is taking you so long? That stuff is not that hard. make sure every opening tag and every closing tag are the same exact spelling. Not hard. Xpath is just how XML organizes things.... not hard, schema.... anyway.I completely disagree with you about that future thing. XML isnt the future. more complex SQL, PHP, ASP, and more of the server languages, those are the futures. the day i see an entire website driven TOTALLY(as in every aspect is run by XML) by XML, is the day i quit programming. Agreed, XML is powerful, but XML has nothing on PHP, ASP, JAVA, or C++.
  15. jhecht

    pointers

    pointer... why does that sound like a c++ thing.... oh wait are you talking about C++ pointers where you use a .... crap what is it, some character in front of the variable name and then when you use that it makes a reference point to the variable where its stored in the computers memory?I dont really think theres something like that?Why, what would you need a pointer for?
×
×
  • Create New...