PHP7 application runs as Microservice to resize and crop images on the fly.  php7

7 years ago | comments | self.php7 | Score: 5 Reddit


Fully Functional Secure Login System in PHP and MySQL  php7

7 years ago | comments | youtube.com | Score: 1 Reddit


introduction of web development and Designing in hindi full tutorial  php7

7 years ago | 1 comment | youtube.com | Score: 2 Reddit

Latest Comment

introduction of web development and Designing in hindi full tutorial by testy Codeiz if any query their u can discuss me.


7 years ago


what is best way or approach to build an app for an existing web application. just to be precise i need a native ios app that updates and fetches data back and fort on an exisiting website  php7

7 years ago | comments | self.php7 | Score: 1 Reddit


PHP Course in Chandigarh  php7

7 years ago | comments | forcitcample.com | Score: 1 Reddit


php Training in Chandigarh  php7

7 years ago | comments | phptrainingchd.byethost33.com | Score: 1 Reddit


What is the most secure password encryption technique in PHP 7?  php7

7 years ago | 6 comments | self.php7 | Score: 4 Reddit

Latest Comment

Always hash passwords with a unique value, like a record ID, in addition to a salt (sometimes called "salt and pepper" hashing) - like hash('sha512',CONSTANTSALT.$user_id.$password) If you use only a constant salt, then "passw0rd" will always hash to the same value, so someone who steals your database will easily find all instances of "passw0rd". Personally, if I found a way to directly access your website's database, I'd create 10 accounts with the top 10 passwords, then download all your data and check if my hashes matched any others...

password_hash is PHP-specific and requires that you record the algorithm used. Depending on your application, it may be wise to select a standard hashing method (e.g. SHA-2 or -3, perhaps SHA512) so that hashed passwords can be verified in Java or Ruby or other systems.

Keep track of failed login attempts and lock out users after a reasonable number of failed logins - like 6 or so.


7 years ago


PHP RANDOM PASSWORD GENERATOR IN HINDI  php7

7 years ago | comments | youtube.com | Score: Reddit


PHP Training in Indore  php7

7 years ago | 1 comment | flickr.com | Score: Reddit

Latest Comment

PHP Training in Chandigarh http://www.phptrainingchd.byethost33.com


7 years ago


Random Password Configuration with Form In PHP  php7

7 years ago | comments | youtu.be | Score: 1 Reddit


random password string generator in php  php7

7 years ago | comments | youtu.be | Score: 1 Reddit


Being Agile and working smart are not the same thing  php7

7 years ago | comments | chrismm.com | Score: 1 Reddit


PHP Training Chandigarh  php7

7 years ago | comments | phptrainingchandigarhblog.wordpress.com | Score: 2 Reddit


PHP Training Chandigarh  php7

7 years ago | comments | phptrainingchandigarhblog.wordpress.com | Score: 1 Reddit


Learn How To Make a Redirect in PHP  php7

7 years ago | comments | blog.liveedu.tv | Score: Reddit


What Are The Top PHP Frameworks For Developers?  php7

7 years ago | 4 comments | arturodigital.com | Score: 1 Reddit

Latest Comment

Does anyone have a list of top PHP frameworks for non-developers?


7 years ago


need help parsing SpreadsheetML file  php7

7 years ago | comments | self.php7 | Score: 1 Reddit


Building a Business Directory web-app in PHP Tutorial  php7

7 years ago | 1 comment | self.php7 | Score: 1 Reddit

Latest Comment

8pm GMT happens in 2 hours and 13 minutes.


I'm a bot, if you found my service helpful please consider upvoting. If you want to send feedback, please send a PM or reply below.


7 years ago


DependenCI: Continous Integration tool for Composer  php7

7 years ago | comments | dependenci.miguelpiedrafita.com | Score: 1 Reddit


PHP Training Chandigarh  php7

7 years ago | comments | forcitcamplecom.wordpress.com | Score: 3 Reddit


The Ultimate Guide To Deploying Your PHP Applications  php7

7 years ago | comments | auth0.com | Score: 4 Reddit


PHP entry tutorial  php7

7 years ago | 1 comment | self.php7 | Score: 2 Reddit

Latest Comment

For PHP try this: http://www.phptherightway.com/. As for wordpress, I think they have a decent documentation on their website.


7 years ago


What is the Best Invoice manage software?  php7

7 years ago | 2 comments | self.php7 | Score: 3 Reddit

Latest Comment

I like freshbooks, its clean and simple... a bit costly tho.


7 years ago


PHP community  php7

7 years ago | 1 comment | vietpro.net.vn | Score: 1 Reddit

Latest Comment

Where is English language ???!


7 years ago


What is the best way to make bitcoin transactions over PHP?  php7

7 years ago | 1 comment | self.php7 | Score: 3 Reddit

Latest Comment

Are you writing ransomeware?


7 years ago


How to get the ID of an account clicked in a table.  php7

7 years ago | 4 comments | self.php7 | Score: Reddit

Latest Comment

On your index.php

<a href='view.php?id=1'>bob</a>

On your view.php

<?php

$id = (int)$_GET['id'];

//fetch user info from db where id = $id


7 years ago


How to convert Video to Frames in PHP  php7

7 years ago | 1 comment | youtu.be | Score: 7 Reddit

Latest Comment

Hi Everyone, I'm just a beginner in PHP. I did a project on converting video to frames, but i don't know how much efficient the code is for this project (in terms of complexity, run-time, reusability, etc). Please, tell me how can i improve on this project and come up with more efficient one. And please also tell me how do you come to know , which of the part is not efficient. Thanks in advance.. GitHub Link: https://github.com/AVI-DHALL/video-to-frames


7 years ago


Saving sessions in PostgreSQL - My First ever PHP class made open  php7

7 years ago | comments | self.php7 | Score: 1 Reddit


From a student learning PHP who wants a REPL  php7

7 years ago | 2 comments | self.php7 | Score: 2 Reddit

Latest Comment


7 years ago


mail.log Receiving Error Message  php7

7 years ago | comments | stackoverflow.com | Score: 2 Reddit


Looking for PHP login to the external website with curl example and how to handle with redirections.  php7

7 years ago | 3 comments | self.php7 | Score: 1 Reddit

Latest Comment

Just curl opt follow location true, and it return last redirect to you


7 years ago


Is It As Easy As They Advertise? I want to create a Tinder like app, but am wary to invest in something like this and don't quite have the app building skills yet. :/  php7

7 years ago | comments | idzup.com | Score: 1 Reddit

Latest Comment

I would be wary of a company that can't spell "grab."


7 years ago


.txt-&gt;Curl-&gt;Pregmetch-&gt;Mysql  php7

7 years ago | 1 comment | self.php7 | Score: 1 Reddit

Latest Comment

$content = array_map(
    function ($url) {
        $client = curl_init($url);
        $opts = [...];

        curl_setopt_array($opts);
        $response = curl_exec($client);
        $error = curl_error($client);

        return (empty($error) ? $response : $error);

    },
    file($filename)
);

array_map(
    function ($html) {
        preg_match(
            '\<iframe class=\"\" src=\"(.*?)\"/'
            $html,
            $matches
        );

        return $matches[1];
    },
    $content
);

Excuse the formatting, can't seem to use markdown properly when typing on a phone..


7 years ago


PHP7 Slower Results Than 5.6 On My Site?  php7

7 years ago | comments | self.php7 | Score: 2 Reddit


What are you expecting from PHP 7? Few things to look out for in PHP 7  php7

7 years ago | 2 comments | phpkolkata.com | Score: 1 Reddit

Latest Comment

It would be REALLY nice if they'd ONLY fix obvious errors and think twice or thrice about eventual new features. 7 is great but now let's just wait until everyone has it before we move on IMHO.


7 years ago


Migrating a PHP 5 app to PHP 7 Guide  php7

7 years ago | comments | auth0.com | Score: 3 Reddit


Video - How to create my first Magento 2 module  php7

7 years ago | comments | youtube.com | Score: 2 Reddit


Transferring Web Hosting Companies For Seo Issues  php7

7 years ago | comments | hirephpdeveloper.tripod.com | Score: 1 Reddit


Seek Help From The Web Application Development Company  php7

7 years ago | comments | hirephpdevelopers.page.tl | Score: 1 Reddit


Marketing Through Website Success.  php7

7 years ago | comments | hirephpdeveloper.webgarden.com | Score: 1 Reddit


Introduction Of Php And Installation  php7

7 years ago | comments | hirephpdevelopers1.webnode.com | Score: 2 Reddit


Why You Should Migrate From PHP 5 to PHP 7 in 2017  php7

7 years ago | comments | self.php7 | Score: 3 Reddit


Writing good code: how to reduce the cognitive load of your code  php7

7 years ago | comments | chrismm.com | Score: 4 Reddit


PHP vs. HTML: What’s the Difference?  php7

7 years ago | 1 comment | business2community.com | Score: Reddit

Latest Comment

PHP is more complicated than HTML...PHP is a program language. HTML is not...


7 years ago


Migrating a PHP 5 App to PHP 7 (Tools &amp; Implementation) - Part 3  php7

7 years ago | comments | auth0.com | Score: 3 Reddit


Migrating a PHP 5 App to PHP 7 (Rundown of PHP 7 Features) - Part 2  php7

7 years ago | comments | auth0.com | Score: 1 Reddit


Haxe 3.4 - a excellent PHP7 compiler  php7

7 years ago | 1 comment | self.php7 | Score: 3 Reddit

Latest Comment

Misleading title; I was expecting a tool to complie php into a standalone executable.


7 years ago


Migrating a PHP 5 App to PHP 7 (Development Environment) - Part 1  php7

7 years ago | comments | auth0.com | Score: 2 Reddit


Gnuplot from php  php7

7 years ago | 1 comment | self.php7 | Score: 1 Reddit

Latest Comment

Maybe try /r/php , not here.

Generating images on the fly is done with GD library on PHP (often present), usually, if you don't want to use JavaScript in the browser what most of the crowd does these days., like D3.js


7 years ago


Laravel 5.4 Released with Awesome New Features  php7

7 years ago | comments | joaoperibeiro.com | Score: 3 Reddit