questions/web-development/php/page/11
Hello @kartik, Use $.ajax to call a server context (or ...READ MORE
Hello @kartik, Try; $data = json_decode(file_get_contents('php://input'), true); print_r($data); echo $data["operacion"]; From your ...READ MORE
Hello @kartik, Just pass it like a normal ...READ MORE
Hello, You have to follow the below steps: bind-address ...READ MORE
Hello @kartik, You need to have a module ...READ MORE
Hello @kartik, Go to: xampp\phpMyAdmin\libraries\config.default.php Look for : $cfg['ExecTimeLimit'] = 600; You ...READ MORE
Hello @kartik, Replace TYPE=MyISAM with ENGINE=MyISAM The problem was "TYPE=MyISAM" which should ...READ MORE
Since Composer works with the current working ...READ MORE
Hello, Try this : echo exec('ping -n 1 -w ...READ MORE
Hello @kartik, You can change Apaches httpd.conf by ...READ MORE
Hello @kartik, I found the answer: $mail->AddEmbeddedImage('img/2u_cs_mini.jpg', 'logo_2u'); and on ...READ MORE
Hello @kartik, Enclose any string to be passed ...READ MORE
I'm running a PHP script and continue ...READ MORE
Hello, For deleting thumbnails you have to enable ...READ MORE
Hello @kartik, It seems that you need scandir instead of ...READ MORE
Hello @kartik, Use this: echo '<pre>'; var_dump($_SESSION); echo '</pre>'; Or you can ...READ MORE
Hello @kartik, This can be nearly done by setting a ...READ MORE
Hii, I would use isset and empty: session_start(); if(isset($_SESSION['blah']) && !empty($_SESSION['blah'])) { ...READ MORE
I have a big problem and I ...READ MORE
Hello, You can try this, $info = pathinfo($_FILES['userFile']['name']); $ext = ...READ MORE
Hello @kartik, You can send mail from localhost ...READ MORE
Hello @kartik, This should do what you're looking ...READ MORE
Hello @kartik, This will unset all of the ...READ MORE
Hello, This single line would do that: $array = ...READ MORE
Hii, Edit the php.ini file: change extension_dir = "ext" into extension_dir = "D:\php\ext" (please write ...READ MORE
Hello, This error is often seen when the default_socket_timeout value ...READ MORE
I hosted a website in Windows Server ...READ MORE
Hello @kartik, If your PHP server allows url ...READ MORE
Hii, You can try this: $query="SELECT * FROM CountryInfo ...READ MORE
Hello @kartik, Use this: curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'PATCH'); should do it. Hope ...READ MORE
Hello @kartik, You need to set the password ...READ MORE
Hello @kartik, try this: function grab_image($url,$saveto){ ...READ MORE
Dear All Data is dumped in div basically insert ...READ MORE
Hello @kartik, It is not working because you have to ...READ MORE
Hello @kartik, I used FPDF v. 1.53 and ...READ MORE
Hello @kartik, When you have many HTML inputs ...READ MORE
Hello, on php7 run for example: > sudo apt-get ...READ MORE
Hello, A simple example capturing anything starting with http:// and https:// could ...READ MORE
Hello @kartik, You're inserting values for OperationId that is an identity ...READ MORE
You can easily tell laravel to load ...READ MORE
Hello @kartik, Change $data[$parts[0]] = $parts[1]; to if ( ! isset($parts[1])) ...READ MORE
Hii, I edited /etc/phpmyadmin/config.inc.php and changed the following ...READ MORE
Hello @kartik, Your server most like does not ...READ MORE
Hello @kartik, You can use the built in fputcsv() for ...READ MORE
Hii, Use: $session_id = Session::getId(); or $session_id = ses ...READ MORE
Hello @kartik, For a typical XAMPP install on ...READ MORE
Hello @Hitesh, Yes, you can create a database using ...READ MORE
Hello @kartik, You can't call a PHP function ...READ MORE
Hello, Try this: $content = utf8_encode(file_get_contents('http://example.com/rss.xml')); $xml = simplexml_load_string($content); Hope it ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.