39,393 Topics

Member Avatar for
Member Avatar for SHAHAB UDDIN

I need a travel agency project that show delete ,insert , update the customer information & log in the customer & admin.Please help me.

Member Avatar for ahqaf
0
108
Member Avatar for andi-dev

hello i have create some webpages they work and are nice but when i click in contat form which contain php code inside it display all code which are inside.

Member Avatar for andi-dev
0
444
Member Avatar for kumar89hitesh

how to make a web page compatible on all browser in php? I made a web page but it not compatible on internet explorer and mozilla. i m using google chrome? please give me suitable example with code.

Member Avatar for diafol
0
74
Member Avatar for dinhunzvi

i have PHP code that creates a text file. after the file has been created i want it to be opened in another tab. how do i modify the code below. <?php session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; set_time_limit(0); // override the maximum execution time in php.ini file if ( isset( …

Member Avatar for diafol
0
698
Member Avatar for ganesh641

i installed PHP version5.4.3 SQL server 2008 IIS7 SQLSRV version3.0 Drupal 7 SQLSTATE[42S02]: [Microsoft][SQL Server Native Client 11.0][SQL Server]Invalid object name 'watchdog'. This error occurs right after the following during Drupal 7.26 installation (shown in the error report). It hangs at the start of Install Profile: Installation tasksChoose profile(done)Choose language(done)Verify …

Member Avatar for Doug_Vann
0
449
Member Avatar for vukhacbiet

I have a source code and want allow user to create their webs with it. I want to use user's registration information about subdomain, admin account and then automatically copy source code folder, create and import database and configure the code for the user, it's the same as a basecamp …

Member Avatar for Doug_Vann
0
246
Member Avatar for iamthwee

K, so I'm using crypt() to hash my passwords as that seems to be the latest and greatest advice circulating on the net. OK, no problem this I'm doing as luckily my production server supports 5.3 ... Well I have my own VPS so upgrading wouldn't be an issue except …

Member Avatar for diafol
0
127
Member Avatar for kareythomson

Following is the app architecture: application |-config |-config.inc.php (contains definition of App ROOT) library |-autoload.class.php public |-css |-img index.php Problem: I am not understanding how to call config file so as to set and access App Root. In Config File - I have defined Constant -> MY_APP_ROOT Now, I wish …

Member Avatar for diafol
0
316
Member Avatar for engrjd91

I am trying to insert data into the mysql table using php... but whenever i fill the form and insert data, it updates it but no exact data is present in my table, there is only 1's present in the records rather than actual data which i have inserted. Kindly …

Member Avatar for gabrielcastillo
0
274
Member Avatar for nufftalon

Hi, I have been able to get bitnami to work successfully at work but not at home. I have a linksys router I connect to. I was using port 80 and 3306 I can launch application but cannot connect to wordpress at all. I understand ports need certain admin rights …

Member Avatar for gabrielcastillo
0
192
Member Avatar for Mohamed_26

Hello, I am trying to the print the variables from the URL. I have tried some methods but it is working. There are variables in the URL. it is just I am not able to print them out. <?php if(isset($_SESSION['cart'])){ echo '<ol>'; foreach ($_GET as $name => $value) { echo …

Member Avatar for Mohamed_26
0
284
Member Avatar for dinhunzvi

i currently have PHP 5.2.7 on my laptop and i would like to upgrade my php version. how do i do that?

Member Avatar for diafol
0
111
Member Avatar for iamthwee

Let's say I have a few input boxes with id's 1,2,3 respectively as a simple example. Now I am using these ids to update certain field in my db. But what is to stop the user from editing those ids to something else! By doing inspect element in chrome. What …

Member Avatar for iamthwee
0
163
Member Avatar for saranya01
Member Avatar for james.lu.75491856

How would I use [web.py](http://www.webpy.org) to execute ASP/PHP server files? Or can web.py not do that and can someone provide me a python script that can execute ASP/PHP server files? Should I try posting this in the PHP forum, Web Design, html, and css fourm, or the Web development forum …

Member Avatar for cereal
0
374
Member Avatar for chaitu11
Member Avatar for showman13

This is baffling me and I am tired of trying different variations to accomplish what should be such a simple task. I have a folder in the main directory of the domainb called 'enroll_updates' that a file will be written to via CRON every night. But I am going to …

Member Avatar for showman13
0
191
Member Avatar for Mike_danvers

hi..i want my customers/users to upload as many jpg pic they want into their individual album..and can make i choice(like what kind of photos(stamp size,poster,collage etc)they want of a particular photo and also there should be the no. of quantities they want...n after submitting those data they total sum should …

Member Avatar for Mike_danvers
0
171
Member Avatar for chaitu11
Member Avatar for davy_yg

This is my codes in my localhost: contactus.php <html> <head> <link href= "css/contact.css" rel="stylesheet" type="text/css" media="screen"> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script> $("#inputID").ready(function(){ $("#inputID input").focus(function(){ $(this).css("background-color","#fbecc5"); }); $("#inputID input").blur(function(){ $(this).css("background-color","#f5f5f5"); }); $("#inputID textarea").focus(function(){ $(this).css("background-color","#fbecc5"); }); $("#inputID textarea").blur(function(){ $(this).css("background-color","#f5f5f5"); }); }); </script> </head> <?php include('includes/navigation.php'); ?> <body> <div id="titlebar"><div id="title"><h2 class="title">Contact Us</h2></title></div> <div id="stitle"> …

Member Avatar for davy_yg
0
173
Member Avatar for kashif farooq

<table > <tr> <td width="673" align="center" valign="top"><img src = "img1.jpg" name = 'SlideShow' width = 670 height = 249 border="0"></td></tr> <tr> <td height="19" align="left" valign="top"> <div align="justify" class="style5"> <h2 align="left"> Your Search Results:</h2> <form action="searchfeed.php" method="post" name="searchform" id="searchform" onSubmit = "return check_fields(this)"; > <table width="654" border="0" cellpadding="0" cellspacing="0" align="center"> <tr> …

Member Avatar for bhupendrasinghpratap
0
429
Member Avatar for chozotheqhai

Hello, I expect it returns to either -1 or 1 but boolean. $dbc = mysqli_connect("localhost", "root", "","test_site") or die ("SQL could not connect to database!."); $query = "INSERT INTO user_accounts(member_type,username,password,name,email,country) VALUES ('$membertype','$username','$password','$name','$email','$country')"; $result = mysqli_query($dbc, $query); $registered =mysqli_affected_rows($result); if($registered>0) echo "Registered Successfully."; else echo "Your registration is unsuccessful."; mysqli_close($dbc); **Warning: …

Member Avatar for gabrielcastillo
0
163
Member Avatar for Qinte

I recently did an upgrade to php5.5.6 but have searched for hours and can't the right dll /* Basic test */ $handle = printer_open('PRINTER NAME'); printer_write($handle, "Text to print"); printer_close($handle); exit;

Member Avatar for chrishea
0
51
Member Avatar for rajendher

hello sir, i have php code to display the following details. Total size : 1.9 MB No. of files : 15 No. of directories : 2 but i need to do this by database because i am displaying links from database. so how it is possible. any suggestions please......... thank …

Member Avatar for diafol
0
260
Member Avatar for rajendher

if i have 10 files in a folder then how to make a zip file for download. any suggestion here or any links . please reply... thanks for reply in advance....

Member Avatar for cereal
0
221
Member Avatar for rajeesh_rsn

Hi i have created a website for my client using PHP and mysql . The client need to backup a table in database as excel file every day. Well he had no idea about coding and all ... He need to backup using a simple way. Please anyone let me …

Member Avatar for arslanqamar
0
799
Member Avatar for davy_yg

Hello, I have this code that shows fb share button which I intend my code to share the article title instead of only the url. how? event_article.php <html> <link href= "css/events.css" rel="stylesheet" type="text/css" media="screen"> <!-- OpenGraph Facebook Meta Tags --> <meta property="og:title" content="Website Title /> <meta property="og:type" content="website" /> <meta …

Member Avatar for davy_yg
0
237
Member Avatar for rajendher

hello admin, how to display the following shortcut. your here >> home >> files >> 2014 >> 02. is database required for that ? any suggestions please ....... thank you........

Member Avatar for rajendher
0
214
Member Avatar for chaitu11
Member Avatar for chaitu11

apache http stops working xampp when i execute any db related files in xampp, even i uninstalled team viewr from my (window7 ultimate)

Member Avatar for veedeoo
0
239

The End.