Quantcast
Channel: PHP – Tejash Shah
Browsing all 10 articles
Browse latest View live

PHP and MySql Interview Question Paper with Answer

What’s PHP? The PHP Hypertext Preprocessor is a programming language that allows web developers to create dynamic content that interacts with databases. PHP is basically used for developing web based...

View Article


PHP snippets to interact with Twitter

Twitter is an awesome tool for website owners, and you should definitely integrate it into your website if you want to attract more traffic and new visitors. Today, let’s take a look at some PHP...

View Article


PHP Warning: fopen() Permission denied in in IIS 7

hi Just at time of installation of opencart on my local iis 7. I face this error PHP Warning:  fopen() []: Permission denied in  in IIS 7Solutions – Steps In Window Explore goto that folder and right...

View Article

PHP Error – It is not safe to rely on the system’s timezone settings. You are...

Search for ‘timezone’ in php.ini file change ;date.timezone = to date.timezone = “America/New_York” or whatever specific timezone you are in.

View Article

PHP Error – How to Display Error in browser

display_errors = On in php.ini  

View Article


How to setup a local web server on your computer using XAMPP

Installing XAMPP on your computer First, download XAMPP for Windows Installer Then run the installer on your computer and make sure that your Windows firewall unblocks Apache. Run the Apache...

View Article

Win 2003 Server, IIS 6, PHP 5 : Error: security error (ACL ERROR).

I am using Win 2003 Server, IIS 6, PHP 5. If you see "You are not authorized to view this page" error when running your PHP page. Try one more thing: 1. Right-click {C:\php} (or your PHP installation...

View Article

How to export HTML Table into Excel via PHP

Create one variable and save whole table as string to that variable and just add below headers lines //Header information $header = "Header1" . "\t"; $header .= "Header2" . "\t"; //Reading the data...

View Article


Sending a CSV file to the web browser with PHP

The headers look like so, substituting filename.csv for the name you would like: header('Content-type: application/octet-stream'); header('Content-Disposition: attachment;...

View Article


Create a CSV file from MySQL with PHP

The example code below uses the raw mysql_* functions but it should be easy enough to substitute a database library’s functions instead. It also writes the data out line by line to the CSV file whereas...

View Article
Browsing all 10 articles
Browse latest View live