Forum: PHP Oct 29th, 2009 |
| Replies: 20 Views: 432 <?php
$file_path = "modules/gallery/index.php";
include ($file_path);
$file_path = str_replace("gallery","enquiry",$file_path);
include ($file_path); |
Forum: PHP Oct 29th, 2009 |
| Replies: 20 Views: 432 <?php
$file_path = "modules/gallery/index.php";
include ($file_path);
$file_path = str_replace("gallery","enquiry",$file_path);
include ($file_path); |
Forum: PHP Oct 29th, 2009 |
| Replies: 20 Views: 432 <?php
$file_path = "gallery/index.php";
/* First Include Gallery Module */
include ($file_path);
/* Replace Gallery Module to Enquiry Module */ |
Forum: PHP Oct 29th, 2009 |
| Replies: 20 Views: 432 <?php
$file_path = "gallery/index.php";
/* First Include Gallery Module */
include ($file_path);
/* Replace Gallery Module to Enquiry Module */ |
Forum: PHP Oct 28th, 2009 |
| Replies: 8 Views: 781 Hi
Wishes For Your CMS
Please Consider:
MVC
--------> Modules
--------> View
--------> Controller |
Forum: PHP Oct 28th, 2009 |
| Replies: 8 Views: 781 Hi
Wishes For Your CMS
Please Consider:
MVC
--------> Modules
--------> View
--------> Controller |
Forum: Community Introductions Oct 28th, 2009 |
| Replies: 5 Views: 236 Hi
I am Alagirivima, PHP Web Developer.
If you have any issues about PHP, AJAX, JAVASCRIPT
i will help for you |
Forum: JavaScript / DHTML / AJAX Oct 27th, 2009 |
| Replies: 3 Views: 511 <html>
<head>
<title>Clear Page</title>
<script type="text/javascript">
function clearElement(id)
{
document.getElementById(id).innerHTML = "";
} |
Forum: JavaScript / DHTML / AJAX Oct 27th, 2009 |
| Replies: 4 Views: 636 Send File Code and Details
AJAX is usefull for this concept |
Forum: PHP Oct 27th, 2009 |
| Replies: 6 Views: 16,770 <?php session_start();
ob_start();
include"db_config.php";
$connect = mysql_connect("$db_host", "$db_user", "$db_password");
mysql_select_db("$db_name", $connect) or die(mysql_error());... |
Forum: PHP Oct 27th, 2009 |
| Replies: 6 Views: 320 Use request for receive data
$_request |
Forum: PHP Oct 27th, 2009 |
| Replies: 6 Views: 320 <?php
require_once "../dbconnect.php"; // include the database information
// if the 'mode' is set in the url (i.e. is the originating call is from new (mode is not set from this file) or edit )... |
Forum: PHP Oct 27th, 2009 |
| Replies: 8 Views: 581 |
Forum: PHP Oct 27th, 2009 |
| Replies: 8 Views: 581 Hi Use This
<table id="t" border="1">
<tr>
<th>SUJET</th>
<th>DATE</th>
<th>NATURE</th>
<th>ACTION</th>
<th>NON DE DECIDEUR</th>
<th>DETAIL</th> |
Forum: PHP Oct 27th, 2009 |
| Replies: 8 Views: 581 <table id="t" border="1">
<tr>
<th>SUJET</th>
<th>DATE</th>
<th>NATURE</th>
<th>ACTION</th>
<th>NON DE DECIDEUR</th>
<th>DETAIL</th>
</tr>
<?php |