Skip to content
WJunction - Webmaster Forum

Search results

  1. J

    Need a script for website?

    i can make a custom one that matches your need
  2. J

    Hello By C7w53j1DyY

    Hey! i think you put your auto-generated password in the wrong field!
  3. J

    Hiring Yahoo Answers Poster

    i can do it and maintain my code for website changes
  4. J

    Review: moviecluster.ch

    that seems awesome, just update your social links :D
  5. J

    My recent logos

    that's nice!
  6. J

    Server to Server PHP API

    think of a signature for each call, maybe time of request encrypted by the auth key. This way you won't need to send the auth key exposed, the idea will be decrypting the signature with a predefined auth key expecting to get a reasonable time point.
  7. J

    Hiring Need Php Coder

    still need one?
  8. J

    Throw Euler Challenges

    <?php function same_nums($num1, $num2) { $num1 = str_split($num1); $num2 = str_split($num2); sort($num1); sort($num2); $num1 = implode('', $num1); $num2 = implode('', $num2); if ($num1 == $num2) { return true; } else { return false; } } $i = 1; while(true){ if(same_nums($i,2*$i)...
  9. J

    DaringHost.com - cPanel, 5GB Space, 300GB Bandwidth from $2.50/month (NL)

    hello, i bought a shared hosting yesterday, i remember logging into cpanel and it was fine. But today i get a licence error when i login to my cpaneel, here is the screenshot:
  10. J

    How do you price your freelancing services?

    ok, i do it differently. I estimate the hours needed by the project to be done, multiply it by a rate depending on the effort, i ask the client for the price he's expecting, and give him a small discount if he's expecting a +/- 10% price (idk why i do that lol).
  11. J

    How many languages do you speak on a daily basis?

    arabic, french, english and german :)
  12. J

    PHP 5.4 & 5.5 Changes

    that sounds python! lol i like the way things are done in PHP
  13. J

    Regex PornHub

    Lock Down is right, you didn't specify to match the target attribute before title, a . instead of \s would solve the problem.
  14. J

    Php Curl post data help needed.

    that may depend on the target, can you make sure the server doesn't limit post data size as a first step?
  15. J

    New filesharing concept - is it possible?

    it seems a good idea, but we need to know what do expert think of it.
  16. J

    Wordpress Plugin Coder Needed

    i can, pm me or post more details here
  17. J

    Php:How to prevent from OverWrite ImageUpload File

    suffixes are good. But for the name part, you better make it md5 generated. At least it would be homogene and controlled ([a-f0-9]). Then you won't need to worry about special chars or file system issues.
  18. J

    PHP Tutorial with SimplexHP (Beta v1)

    add me on live or gmail
  19. J

    PHP Tutorial with SimplexHP (Beta v1)

    make it on github and i would help
Back
Top Bottom