Constants in HindiConstants की values change नहीं की जा सकती |PHP Constants के लिए define() function का इस्तेमाल किया जाता है |define() function पर दो या तीन parameters होते है |Syntax for define() with two parametersdefine('constant_name', "constant_value");Parameters :constant_name : यहाँ पर ये constant का नाम है |constant_value : यहाँ पर ये constant...
05 November, 2018
Constants in Hindi
Programing Coderfunda
November 05, 2018
hindi-php, php
No comments
Constants in Hindi
Constants की values change नहीं की जा सकती |
PHP Constants के लिए define() function का इस्तेमाल किया जाता है |
define() function पर दो या तीन parameters होते है |
Syntax for define() with two parameters
define('constant_name', "constant_value");
Parameters :
constant_name : यहाँ पर ये constant का नाम है |
constant_value...
Echo and print in Hindi
Programing Coderfunda
November 05, 2018
hindi-php, php
No comments
PHP में statements के लिए echo और print का इस्तेमाल किया जाता है |echo Statement in PHPecho का इस्तेमाल PHP में statements को output में display करने के लिए किया जाता है |echo statements में एक से ज्यादा parameters ,(comma) और .(dot) से seperate और pass किये जाते है |echo; print से ज्यादा गति प्रदान करता है |echo कोई value...
Echo and print in Hindi
Programing Coderfunda
November 05, 2018
hindi-php, php
No comments
PHP में statements के लिए echo और print का इस्तेमाल किया जाता है |
echo Statement in PHP
echo का इस्तेमाल PHP में statements को output में display करने के लिए किया जाता है |
echo statements में एक से ज्यादा parameters ,(comma) और .(dot) से seperate और pass किये जाते है |
echo; print से ज्यादा गति प्रदान करता है |
echo कोई...
Comments in PHP in Hindi
Programing Coderfunda
November 05, 2018
Hindi Comment, php
No comments
PHP में comments programmer को code समझने के लिए दिया जाता है | ये Comment lines server द्वारा read नहीं की जाती |PHP में दो प्रकार से comments को इस्तेमाल किया जाता है |Single Line CommentMultiple Line Comments1. Single Line CommentSingle line Comment दो प्रकार से की जाती है |शुरुआत पर #(hash) या //(backslashes) का इस्तेमाल करके Single comment दी...
Comments in PHP in Hindi
Programing Coderfunda
November 05, 2018
Hindi Comment, php
No comments
PHP में comments programmer को code समझने के लिए दिया जाता है | ये Comment lines server द्वारा read नहीं की जाती |
PHP में दो प्रकार से comments को इस्तेमाल किया जाता है |
Single Line Comment
Multiple Line Comments
1. Single Line Comment
Single line Comment दो प्रकार से की जाती है |
शुरुआत पर #(hash) या //(backslashes) का इस्तेमाल करके Single...
01 November, 2018
How to upload image file in Database by codeigniter
Programing Coderfunda
November 01, 2018
No comments
CodeIgniter Image and File Uploadpublic function insertblog() { $title = $this->input->post('title'); $author = $this->input->post('author'); $date = $this->input->post('date'); $description = $this->input->post('description'); $status = $this->input->post('status'); $images_count = count($_FILES['userfile']['name']);...
How to upload image file in Database by codeigniter
Programing Coderfunda
November 01, 2018
No comments
CodeIgniter Image and File Upload
public function insertblog()
{
$title = $this->input->post('title');
$author = $this->input->post('author');
$date = $this->input->post('date');
$description = $this->input->post('description');
$status = $this->input->post('status');
$images_count...