Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. Not really. It was inside a Magic Dirt album cover, I liked it. The image I mean, not so much the band (I did at the time, but that's not why I got the tattoo).
  2. Have you attempted to write any code for this? Its just a matter of thinking the problems through logically.
  3. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=306387.0
  4. Mines a similar story. The company I now work for joined the synergy of companies that I was already part of. The oppertunity came up for me to transfer as I had the qualifications. Soon learnt the ropes with PHP and the rest of it. After a short period the company broke out of the group and we went it alone. I wish I was programming more in PHP. Most of my work is fixing asp, or working in an environment called Jade. Jade sux. Its an entire platform written in Java that has its own scripting language which is a cross between sql, Python and VBScript. Its slow obviously though, because its just Java underneath. The only good thing it has is a completely OOP database. I do get to create 'micro sites' in php though and spent a good part of the last 12 months developing a new framework and CMS in PHP. The other thing I miss a great deal is Linux. Its a Windows company. I had to jump through allot of hoops just to get to use PHP. I do however have Cygwin installed on my box and my two dev servers, it helps.
  5. Its a pc in my cupboard, maybe its struggling a little.
  6. Thats weird, there loading fine here (they are hosted on this pc though). Yes I'm getting the dna graph, on the inner of my right forearm.
  7. This topic has been moved to mod_rewrite. http://www.phpfreaks.com/forums/index.php?topic=306379.0
  8. May as well throw my few cents in. I'm Australian after all and also work in the industry. It wasn't always the way though and I guess I have just been really, really lucky. I would say your level of experience is likely going to be more important depending on the company. And by that I mean web development companies are probably going to be allot more scrutinizing of your abilities. I went for a few jobs with web dev firms and never really got a look in. However I ended up landing a job within a large publishing company that happened to need a web developer. I guess what I'm saying is (without any commercial experience) you might be better to start looking at larger companies with there own small IT depts. We only have about 20 in our IT dept, and none of them have web dev experience. I believe these companies may be easier to crack. Given that noone at my work knows jack shit about the web. I do however have a confession. I had already worked for this same company for almost 11 years beforehand, so they may just have been giving me a go. I also held a fairly good position before applying for the web dev job, so there may have already been some trust that I knew what I was doing. I'm on a good wage, dropped almost 20K to take this pose though. It was however quite the life change.
  9. One that I've had since I was about 22. Its a spiky ball of sorts. One that I wasn't ever going to tell you guys about. Not particularly original, its obfuscated C and compiles to say "Hello World!" The next I'll be getting is going to be something like... Its a graphical representation of dna. We are (the wife and I) 10 weeks pregnant, and when we have a child I'm getting a graphical representation of there DNA instead of there name or picture. I have another on my lower back but can't photograph it.
  10. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=306365.0
  11. mysql_connect('', '', ''); mysql_select_db(''); if (isset($_POST['submit'])) { $user = mysql_real_escape_string($_POST['user']); $pass = mysql_real_escape_string($_POST['pass']); $sql = "SELECT id FROM login WHERE username = '$user' && `password` = MD5('$pass')"; if ($result = mysql_query($sql)) { if (mysql_num_rows($result)) { // $user & $pass are valid } else { // $user || $pass invalid } } }
  12. This topic has been moved to HTML Help. http://www.phpfreaks.com/forums/index.php?topic=306370.0
  13. This topic has been moved to Apache HTTP Server. http://www.phpfreaks.com/forums/index.php?topic=306351.0
  14. Ok, it's still pretty unclear to me what your after. 1,2,3 & 4 aren't even in your original string.
  15. You MUST have output. The error even tells you its on line 1 of index.php.
  16. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=306339.0
  17. Oh, because you posted your question in the 'PHP Coding Help' board, one would assume you wanted a PHP solution. I've moved your thread for you.
  18. Have you read the 'HEADER ERRORS' sticky?
  19. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=306341.0
  20. Can we see some code and what your query actually returns? MySql can't store arrays, so its hard to tell from your description what you actually have.
  21. trq

    remote access wayback

    There is a link in my signature 'How To Ask....'. You should read it and come back when you can form a useful question.
  22. trq

    remote access wayback

    Your question is incredibly unclear. You might start by telling us which wayback you referring too.
  23. trq

    Wont MD5?

    Why do you need to ? That should have been checked at registration. All you need do now is validate and login the user.
  24. trq

    Wont MD5?

    Your the one meant to be describing your problems. Post too many stupid threads and people will simply ignore them after a while.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.