dhanar98dhanar98.hashnode.dev·Sep 20, 2023Install Phalcon Framework And PHP-Nginx Using Bash Script - UBUNTUUnlocking Web Performance: Installing Phalcon Framework and PHP-Nginx with a Bash Script on Ubuntu In today's fast-paced digital landscape, a website's speed and performance are paramount to its success. Slow-loading websites not only frustrate visit...DiscussInstall Phalcon in Various Operating Systemsphalcon
Jay MakwanaforGhanshyam Digitalblog.ghanshyamdigital.com·Aug 19, 2023Retrieve File Name and Line Number in PHPIntroduction When working with PHP, it's essential to have the ability to retrieve information about functions, such as the file name and line number where they are declared. One way to achieve this is by utilizing the built-in PHP class called Refle...DiscussPHP
Kalaivani Rajendrankalair92.hashnode.dev·Aug 14, 2023Creating an E-Commerce Website Using PHP and MySQLOverview An E-Commerce website is an online platform that enables businesses to sell products or services over the Internet. Customers can browse through the website, view product details, add items to their cart, and proceed to checkout to make a pu...Discuss·3 likes·69 readsBuilding a eCommerce website with MySQL Database and PHPecommerce
Bindu Patidarbindu.hashnode.dev·Aug 8, 2023PHP isn’t that bad, so why the hate?Despite being widely used and having a substantial user base, PHP has faced its fair share of criticism over the years. It's important to note that opinions about programming languages can vary widely and often depend on personal preferences, project...Discuss·2 likesPHP
Mani Vaidhymanivaidhy.hashnode.dev·Jul 28, 2023Laravel : Running single cron on multiple serversThis article is to set up a single cron on multiple servers in Laravel. Create EC2 Instance in AWS Open the Amazon EC2 console at https://console.aws.amazon.com/ec2/ and click on “Running Instances”. Click on Launch Instance. Choose which type of V...DiscussLaravel
NaveenJoshuvanaveenjoshuva.hashnode.dev·Jul 26, 2023edabit php problem solving1.Return the Sum of Two Numbers Create a function that takes two numbers as arguments and returns their sum. Output: addition(3,2) 5 addition(-3,-6) -9 addition(7,3) 10 function addition($a, $b) { return $a+$b; } addition(3,2) 2.Return the Next...DiscussPHP
NaveenJoshuvanaveenjoshuva.hashnode.dev·Jul 23, 2023Php Print vs EchoBoth echo and print are used to output data in PHP, but they have some differences in terms of usage and behavior: Return Value: echo: Does not return any value. It simply outputs the data to the screen. print: Returns 1 after printing the data to...DiscussPHP
Abir Kumarlancerblog.hashnode.dev·May 21, 2023Multidimensional array in PHP$nameArray = [ "first_name" => "Saiful", "last_name" => "Jamal", "age" => 32, "contact_number" => +8801677729892, "address" => [ 'present_address' => "32 Nowabganj Raod, Lalbagh, Dhaka 1211", ...DiscussPHP
Karlebkarleb.hashnode.dev·Apr 10, 2023Model Relationships In LaravelThe eloquent relationship provides a fluent way by which we define the relationship between databases and their respective models in Laravel. It is an important feature of the framework and one of its selling points, it is important to be familiar wi...Discuss·1 like·56 readsLaravel
Sajib Adhikarysajibadhi.hashnode.dev·Feb 26, 2023Getting Started with PHP: A Beginner's GuidePHP is a popular server-side scripting language used for creating dynamic web pages and web applications. If you're new to PHP, getting started can be a daunting task. But don't worry, with a little bit of guidance, you can learn the basics of PHP an...Discuss·1 like·31 readsPHP