---
title: "Adding an Image to a Page in PHP-Nuke"
description: "In the last article in our PHP-Nuke Education Channel, we showed you how to make a page. In this tutorial we will show you how to add an Image to a page in PHP-Nuke. It helps to have a basic..."
url: https://www.inmotionhosting.com/support/edu/php-nuke/php-nuke-adding-image/
date: 2013-03-14
modified: 2023-06-19
author: "InMotion Hosting Contributor"
categories: ["PHP-Nuke"]
type: post
lang: en
---

# Adding an Image to a Page in PHP-Nuke

In the last article in our [PHP-Nuke Education Channel](/support/website/ecommerce/ecommerce-setup-merchant-account-gateway/), we showed you [how to make a page](/support/edu/php-nuke/creating-content-page/). In this tutorial we will show you how to add an Image to a page in PHP-Nuke.
It helps to have a basic understanding of HTML when completing this guide.

## How to Add an Image to a Page

1. Upload the image you want to add to the page using FTP. If you are not familiar with the directory structure, I recommend reading this article: [What directory should I put my files in?](/support/website/where-to-upload-files/)
2. In the folder you installed PHP-Nuke in, open the [*config.php* file for editing](/support/website/how-to-edit-a-file/). Look for 2 instances of: $AllowableHTML One will be commented out, and one will not be, we are going to switch these. Comment out the one that is not commented out, and un-Comment out the one that is commented out: [![view of allowable-HTML code in config file](https://www.inmotionhosting.com/support/wp-content/uploads/2013/03/php-nuke_add-image_allowble-html.png)](/support/wp-content/uploads/2013/03/php-nuke_add-image_allowble-html.png)
3. [Login to the Admin Section for PHP-Nuke](/support/edu/php-nuke/login-administrator-system/).
4. Under the *Modules Administration* section click the **Content** button. [![clicking content button in PHP Nuke](https://www.inmotionhosting.com/support/wp-content/uploads/2013/03/php-nuke_add-image_adding-image-content.png)](/support/wp-content/uploads/2013/03/php-nuke_add-image_adding-image-content.png)
5. Under the *Content Manager* section, click the title of the page you want to add an image to. When the page loads, click the **Edit** link on the bottom.
6. Now when you scroll down you will see the content field, click the **HTML** button. The *Edit HTML Source* window will pop up.
7. In the window, insert the HTML code for adding the image you uploaded, it should look similar to this: <IMG SRC=”https://example.com/gif”> [![adding the image code to the HTML source](https://www.inmotionhosting.com/support/wp-content/uploads/2013/03/php-nuke_add-image_adding-image-code.png)](/support/wp-content/uploads/2013/03/php-nuke_add-image_adding-image-code.png)
8. Click the **Update** button to save your changes. You will then see the image in your text field, click the **Save Changes** button on the bottom. You will then see the image on your page. [![view of picture inserted in PHP-Nuke](https://www.inmotionhosting.com/support/wp-content/uploads/2013/03/php-nuke_add-image_phpnuke-image.png)](/support/wp-content/uploads/2013/03/php-nuke_add-image_phpnuke-image.png)

Congratulations, now you know how to add an image to your **PHP**-Nuke website!
