Ravens PHP Scripts: PHP



Search on This Topic:   
[ Go to Home | Select a New Topic ]
 


Page 1 of 11 (61 total stories) [ 1 | 2 | 3 | 4 | 5 | 6 | > | >> ]  

 

The 6 Best PHP Scripts Providers for 2021 More about Printer Friendly Save as PDF

Posted on Monday, October 04, 2021 @ 22:39:21 UTC in PHP
by neralex

southern writes:  

When looking for the best PHP scripts online, it’s easy to get overwhelmed. There are a lot of different offers out there often with large libraries of products.

Yet, ready-to-use PHP scripts are one of the easiest ways to add functionality to your site, from contact forms to shopping carts. So, in order to make it easy for you to find what you need, in this post we will go over six of the best directories for PHP scripts out there and what they have to offer.

more: WebSiteSetup

 

 

WHAT IS NEWS LISTER? More about Printer Friendly Save as PDF

Posted on Monday, October 04, 2021 @ 22:38:58 UTC in PHP
by neralex

southern writes:  

News Lister is a free PHP script, that can be used to create simple news or articles management websites or to be integrated in existing websites to create news sections in them.

News Lister is also very easy to install and it's not using any database - the news information is stored in XML files and the uploaded images in local folders. This makes the installation very easy - it's just necessary to upload the script files (which you can download from the link below) to your website or folder in which you wish to install it.

It's also made to be responsive (mobile-friendly), so the website and interface adapt to the different devices like tablets and smartphones and their screen sizes.

You could find below a brief overview of its main features and online demos.

more: www.netartmedia.net/newslister

 

 

How To Read A CSV With PHP More about Printer Friendly Save as PDF

Posted on Monday, December 21, 2020 @ 11:21:24 UTC in PHP
by neralex

southern writes:  

Looking how to read a CSV using PHP? What to import a CSV into our database? The code snippet below will help you do just that.

PHP.net has the manual for the fgetcsv which is used in this example.

Example

$row = 1; if (($handle = fopen("test.csv", "r")) !== FALSE) { while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { $num = count($data); echo "

$num fields in line $row:

\n"; $row++; for ($c=0; $c \n"; } } fclose($handle); }

Replace test.csv with your own file.

This snippet will parse CSV into a multidimensional array

*All code snippets are open source, everyone is free to use.

PhP Tricks

 

 

Simple and Responsive jQuery Carousel Slider More about Printer Friendly Save as PDF

Posted on Monday, December 21, 2020 @ 11:21:07 UTC in PHP
by neralex

southern writes:  

Today I will share how to create simple and responsive jQuery carousel slider, although there are various ways to do but i will share the simplest way to achieve this goal.

JQuery carousel slider is very helpful, we used it several times in our web projects or blogs, you may want to display your blog recent posts, recent clients, recent project in a carousel slider or you may be want to make it your main page slider.

Steps to Create Simple and Responsive jQuery Carousel Slider

To create a simple and responsive jQuery carousel slider, we need to follow the below steps.

More All PhP Tricks

 

 

Master PHP Array Functions More about Printer Friendly Save as PDF

Posted on Tuesday, October 06, 2020 @ 20:07:19 UTC in PHP
by neralex

southern writes:  

You are probably using array every day as a PHP developer, because it is the default collection type of data structure in PHP. What you might not be aware is that PHP provides tons of built-in array manipulation functions, they are more efficient compared to user land solution, because they are built into the core and designed to handle most of edge cases.

In this series of tutorials, we will be going through some built-in array functions. Show their possible use cases as comprehensively as we can. Hopefully this series will improve the way you deal with PHP array and make your code better.

Throughout the whole series, we will be operating on an array called $books:

more: Star Tutorial

 

 

PHP Simple Encryption More about Printer Friendly Save as PDF

Posted on Tuesday, October 06, 2020 @ 20:07:02 UTC in PHP
by neralex

southern writes:  

A PHP library that makes encryption and decryption of text easy.

Requirements

PHP 7.2+
Openssl PHP extension

Installation

Simply add a dependency on stymiee/php-simple-encryption to your project's composer.json file if you use Composer to manage the dependencies of your project.

Here is a minimal example of a composer.json file that just defines a dependency on PHP Simple Encryption:

more: GitHub

 



Page 1 of 11 (61 total stories) [ 1 | 2 | 3 | 4 | 5 | 6 | > | >> ]  

News ©

Site Info

Last SeenLast Seen
  • vashd1
  • ofigustavo
Server TrafficServer Traffic
  • Total: 482,320,890
  • Today: 5,092
Server InfoServer Info
  • Apr 19, 2024
  • 03:25 am UTC