Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~5K People Reached
Interests
web development
Favorite Forums
Favorite Tags
Member Avatar for Sujan Shrestha

here, home.php is one controller file and i want to redirect into another controller file login.php but this code is not working. if you have any idea then plz help me... *home.php* <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Home extends CI_Controller{ function __construct(){ parent::__construct(); $this->check_isvalidated(); …

Member Avatar for Adrian_5
0
2K
Member Avatar for Sujan Shrestha

i used this code to insert data into database but nothing happening.. <?php session_start(); if(isset($_POST['submit'])) { $dbhost="localhost"; $dbuser="root"; $dbpass=""; $tablename="requested_quotes"; $conn=mysql_connect($dbhost, $dbuser, $dbpass)or die("cannot connect"); mysql_select_db('1')or die("cannort select DB"); $fname=$_POST['fname']; $lname=$_POST['lname']; $sex=$_POST['sex']; $email=$_POST['email']; $phone=$_POST['phone']; $address1=$_POST['address1']; $address2=$_POST['address2']; $country=$_POST['country']; $city=$_POST['city']; $state=$_POST['zip']; $date=$_POST['date']; $contactme=$_POST['contactme']; $interest=$_POST['interest']; $sql="INSERT INTO $tablename(first_name, last_name, sex, email,phone, address1, address2,country, …

Member Avatar for Sujan Shrestha
0
3K
Member Avatar for Sujan Shrestha

i used this code to upload images and display from database but not working correctly... **images.php** <?php include('header.php'); ?> <center> <form action="addimages.php" method="post" enctype="multipart/form-data"> <table border=0> <tr><td>Select Image: </td><td><input type="file" name="image"></td></tr> <tr><td>Caption: </td><td><input name="caption" type="text"></td></tr> <tr> <td colspan=2><input type="submit" name="Submit" value="Upload" ></td></tr> </table> </form> </center> Photo Gallary: <br /> <br …

Member Avatar for OsaMasw
0
263