DELETE RECORDS IN PHP/MYSQL

Delete Records in mysql Delete records from database is a easy task the main logic behind deleting a record from database table is delete command of my sql as follows Delete from tableName where id = something The data you want to delete will be pass in id and the record will be deleted from database make sure if you delete a record from database you can't recover that record . You need following things for deleting record First you have to connect your script with database...
Read more »

CRUD IN PHP

What is crud ? Crud stands for create , read , update and delete operations in database if you are new to php and want to experience crud operations in php than you are right place if you are a professional developer you have to use these operations in every span of your proagraming language if you are beginner don't worry at all i will explain here all these php things step by step. Steps for Crud operations in php Create a database as you wish but for demonstration purpose i...
Read more »

Update Records in mysql datebase

Update Records in Mysql : It is easy to update records in mysql database using html forms.After creating insert record in mysql we can easily update records but make sure while using update you have to pass id of a particular record from previous script like the url will take particular id to that script which will take part in updating the particular record.In this case display.php is script that will display record and when user will click on update than display.php file will pass the id of...
Read more »

Create facebook account without email and mobile number

Create Account on facebook without email and mobile  Facebook is secure among social web site platforms but it have some loop holes. Yes you can create or sign up on facebook without having a email account or without mobile number. How it is possible on facebook Facebook is social platform who usually authenticate his users by sending one time password on mobiles or by sending a six digit verification code on emails.When user fill this one time password than facebook confirm...
Read more »

Fetch Data from database

Fetch data from database : Reading data from database is easy process .To fetch or read data from database using php you need to require some knowledge of php language and its functions and how you can enter records in mysql or insert operation or just enter the following sql file in sql tab of database as instructed in video i am using 'php operations' as database or you may create it accordingly. Sql file to read data from database CREATE TABLE `crud` (`id` int(11) NOT NULL,`firstName`...
Read more »

Insert Data into mysql

Insert data into mysql  If you are a beginner or a php proagrammer you must learn how to insert data into database using php.Here is the story for insertion data into database. First of all you require to login into your server or in your xampp and then create a database i named it as ''php operations" here and insert the database by entering the following sql commands in sql tab of mysql.For more information you may watch the following video or just copy and paste the code below . CREATE...
Read more »

Validate Email In Php

Validate Email Using Php Sometimes you need to validate a email when you use php as proagraming language there are many other ways to validate a email like jquery validation is popular but Php Email validation is more secure than front end validation . To validate a email using php we require php filter_var() function . filter_var() filter_var() function filters the result by consuming filter provided in it This function accept three parameters and than filter out the result as followsfilter_var(...
Read more »
Page 1 of 41234Next Page »