Search
 
SCRIPT & CODE EXAMPLE
 

PHP

showing php code in browser

First your php or apache has been misconfigured not this was done on Ubuntu 22.04 LTS

First uninstall all php versions 
sudo apt purge php*

then install the lattest and other packages
sudo apt install php8.0-common php8.0-cli
sudo apt install php8.0
sudo apt install php

Check if it was installed successfully and version installed
php -v

Then restart apache2
sudo systemctl restart apache2

Then install other packages
sudo apt install php8.0 libapache2-mod-php8.0
sudo apt install php8.0-fpm libapache2-mod-fcgid
sudo a2enmod proxy_fcgi setenvif
sudo a2enconf php8.0-fpm
systemctl restart apache2
sudo apt install php-xml
sudo apt install php-mysqli
  
FINALLY RESTART apache2 and enjoy 
systemctl restart apache2

I HOPE THIS SOLVES YOUR PROBLEM
Comment

php showing code in browser

If your PHP code is being displayed in the browser, it means that your
server has not been setup to serve PHP scripts.

You can use something like XAMPP. If you do, activate 'Apache' and 'MySQL'

After you do that, go into the download directory and go into 'htdocs'
(default: 'C:xampphtdocs')

Make a folder with your PHP code in it.

To access the website, go into your browser and type:

localhost/FOLDER_NAME_WITH_PHP_HERE

NOTE:
	this will only allow you to view it locally, nobody else will be able
    to see the website.
Comment

PREVIOUS NEXT
Code Example
Php :: convert std to array php 
Php :: send var in header php 
Php :: how to fetch data from url in php properly 
Php :: woocommerce checkout manager confirm password 
Php :: array_filter first element php 
Php :: php microtime to ms 
Php :: Clear and delete the folder after the time specified in php 
Php :: php new line 
Php :: instalar php 7.4 no ubuntu 
Php :: laravel blade foreach index value 
Php :: laravel get from model first 
Php :: 301 redirect 
Php :: update profile method in laravel 
Php :: woocommerce hook after order placed 
Php :: check date PHP 
Php :: php .= 
Php :: php for next loop step 
Php :: laravel use global variable in model 
Php :: laravel compare date timestamp 
Php :: array_walk in php 
Php :: add custom post type wordpress 
Php :: Stored Procedures in Laravel 
Php :: copy folder contect to anthor folder php 
Php :: php get bool from string 
Php :: PHP strtoupper — Make a string uppercase 
Php :: get curl httcode php 
Php :: replace string in php 
Php :: php increment and decrement 
Php :: php artisan insert user with tinker 
Php :: return view inside subfolder laravel 
ADD CONTENT
Topic
Content
Source link
Name
8+3 =