39,316 Topics

Member Avatar for
Member Avatar for Raadha

<?php $con=mysqli_connect("localhost","root","","trial"); if (mysqli_connect_errno()) { echo "Failed to connect to MySQL: " . mysqli_connect_error(); } echo "<table border='1' style='border-collapse: collapse;border-color: silver;'>"; echo "<tr style='font-weight: bold;'>"; echo "<td width='200' align='center'>Customer</td><td width='200' align='center'>Amount</td>"; echo "</tr>"; if(isset($_POST['submit'])) { $custype = $_POST['custype']; $from = $_POST['from']; $to = $_POST['to']; echo "<br><br>"; echo " <h2> Grand …

Member Avatar for minitauros
1
159
Member Avatar for Catweazle

Can the database of a phpBB forum be transferred across to run under vBulletin, without losing memberlists, post history and so forth?

Member Avatar for lizapritz
0
555
Member Avatar for tqmd1

Sir I have following codes <?php // Connection variables $host = "localhost"; $username = "root"; $password = ""; $db_name = "phonebook"; $con = mysql_connect($host, $username, $password, $db_name); if (!$con) { echo ('<script type="text/javascript">alert("Error Connecting to database")' . mysql_connect_error($con) . '</script>'); } $result = ""; $username = ""; $password = ""; …

Member Avatar for TheBludger
0
240
Member Avatar for damle1

I want to search data base by input date given by user in php my sql How to do it? Regards

Member Avatar for minitauros
0
83
Member Avatar for ryantroop

While it may certainly seem "lazy" I spend a large portion of my time in javascript and I like the syntax for arrays. I cant seem to figure out if I can "prototype" the array "object" and give it methods that simply returns the appropriate function: i.e. $aMyArr = array(); …

Member Avatar for pritaeas
0
445
Member Avatar for kumar89hitesh

How to send email from localhost in php? i have also configured php ini file and send email file but i have the error when i run this program--- Warning: mail() [function.mail]: SMTP server response: 530 5.7.0 Must issue a STARTTLS command first. sy10sm34464318pac.15 - gsmtp in C:\xampp\htdocs\reena\mail.php on line …

Member Avatar for diafol
0
179
Member Avatar for timetraveller1992

I am trying to write a multiline string into a text file but it does not appear as multi-line text. Here's my code $hostname = "localhost"; $username = "root"; $password = "sample"; $dbname = "code"; $code = <<< THECODE ; This is the main configuration file for your web app …

Member Avatar for Lsmjudoka
0
256
Member Avatar for damle1

Hi I am new to PHP I want to create drop down list in form where user can type any other thing if he does not wish to select from drop down. Pl Help Dr Damle

Member Avatar for Gaetane
0
190
Member Avatar for jagdish1

Hi , I want to create search field as same like google search but not using API its using database. When i typpe 'R' in input field related to 'R' country name should show in dropdown brom database using php , ajax . Please can you send me the source …

Member Avatar for cereal
0
69
Member Avatar for tqmd1

Sir, I am using these codes <?php if(isset($_POST['login'])){ require_once("connect.php"); session_start(); // username and password sent from Form $myusername=addslashes($_POST['username']); $mypassword=addslashes($_POST['password']); if(empty($myusername) || empty($mypassword)) { echo '<script>alert("User name and password must not be empty")</script>'; }else{ $query="SELECT name FROM admin WHERE mobile='".$myusername."' and password='".$mypassword. "'"; $result=mysql_query($query); if(!$result) { echo "<script>alert('username, password query is …

Member Avatar for pritaeas
0
151
Member Avatar for rrajeswari03

i want to upload multiple image in php.am getting image path like (image.jpg,image2.jpg,etc..).it is possible to split the path and upload each file to folder...can anyone help me with code.

Member Avatar for rrajeswari03
0
101
Member Avatar for jacob21

I am using below query for fetching result using union of two tables. I am trying to get total number of records after union of two tables Need Suggestions. ` SELECT a.* FROM svn_headline a where a.newstypeid=2 UNION SELECT b.* FROM svn_crimenews b where b.newstypeid=2 order by newsdatetime desc SELECT …

Member Avatar for pritaeas
0
100
Member Avatar for nurul_1

Hi,please help me. I have a textbox called txtUsername, also have one called txtEmpID. what im looking for is a simple way for txtempid can get updated automattically based one what i type in txtusername. Thank you

Member Avatar for nurul_1
0
303
Member Avatar for hallianonline

Hello i have a simple question and i need a simple solution I have a javascript file named a pricing.js which contains this content in it var price_arr = new Array('&#36; 16.95','&#36; 30.95','&#36; 49.95','&#36; 70.95','&#36; 99.95','&#36; 109.95','&#36; 139.95','&#36; 155.95','&#36; 199.95','&#36; 460.95'); but i want to to update this part of …

Member Avatar for diafol
0
198
Member Avatar for Stefce

Hello since cereal helped me out with the price and counting in PHP i need just one more thing, to get the names of the products i have tryed different ways to do it by my self but i just cant cause im begginer with PHP language, i have this …

Member Avatar for diafol
0
269
Member Avatar for nurul_1

Hi, please help me. I want to generate graph based on my data in database. User can pick the date or month or year then the graph will be generate.

Member Avatar for diafol
0
52
Member Avatar for nuno.freitas.meneses.monteiro

Hello guys, I am doing a Friend system on my website, and I did the friend request, to accept, but the friends list isn't alright in some part of code because it isn't take the correct id, anyone can help me? 1. <?php 2. 3. $users = $_SESSION['username']; 4. 5. …

Member Avatar for nuno.freitas.meneses.monteiro
0
325
Member Avatar for Stefce

Hello, i'm new in PHP so i dont know much about it so ill need a little help with this "eazy" problem. I need to calculate the total price of the items on every "checkbox" check. here is my code: <?php $mikrobranova = 3999; $smasina = 4999; $amasina = 9999; …

Member Avatar for Stefce
0
8K
Member Avatar for davy_yg

What's wrong with this code: <?php include('include/con_database.php'); $result2 = mysql_query("SELECT * FROM banner ORDER BY DESC"); while ($data2 = mysql_fetch_array($result2)){ echo '<td>'.$data2['images'].'</td>'.'<br>'; } ?> Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in E:\xampp\xampp\htdocs\IndonusaCMS\index.php on line 39 Line 39: while ($data2 = mysql_fetch_array($result2)){

Member Avatar for rpv_sen
0
124
Member Avatar for Udeme_1

please am new to database management but the question i have a form for my input by new users but i want to get the user name and password from the form to create new priveleges to the database so that when the user log-in the next time his username …

Member Avatar for pritaeas
0
128
Member Avatar for davy_yg

( ! ) Parse error: syntax error, unexpected $end in E:\wamp\www\IndonusaCMS\admin\index.php on line 544 IndonusaCMS/admin/index.php ?> </div> </div> </body> </html> <? } ?> Line 544 is the last blank line. What should I do to fix the error?

Member Avatar for davy_yg
0
54
Member Avatar for mwenyenia07

//CODE to handle uploads function do_upload($data) { $objResponse = new xajaxResponse(); $config['upload_path'] = './photos/'; $config['allowed_types'] = 'gif|jpg|png'; $config['max_size'] = '100'; $config['max_width'] = '1030'; $config['max_height'] = '773'; $this->load->library('upload', $config); if ( ! $this->upload->do_upload($data['userfile'])) { $error = array('error' => $this->upload->display_errors()); //$objResponse->Assign("ajax_div", "innerHTML",$this->upload->display_errors()); $objResponse->Assign("ajax_div", "innerHTML",$this->upload->display_errors()); } else { $data = array('upload_data' => $this->upload->data()); …

0
74
Member Avatar for EmilyJohnson

Hello All, I am getting error "*You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1*" on running my php script. My SQL Syntex is: $query = "SELECT (movie_name,movie_year,movie_director,movie_leadactor,movie_type,movie_running_time,movie_cost,movie_takings) FROM movie …

Member Avatar for EmilyJohnson
0
294
Member Avatar for nadiam

<table width="700" border="1" bordercolor="#FFFFFF" bgcolor="#000000"> <tr bgcolor="#FFFF66"> <td height="28" colspan="3" align="center"><strong> My Blood Pressure Data</strong></td> </tr> <tr bgcolor="#FFFFFF"> <td>Date:</td> <td>:</td> <td><?php echo $row["date"];?></td> </tr> <tr bordercolor="#FFFFFF" bgcolor="#FFFFFF"> <td width="170">Select a time(12Hours)</td> <td width="3">:</td> <td><?php echo $row["time"]; ?></td> </tr> <tr bordercolor="#FFFFFF" bgcolor="#FFFFFF"> <td>Systolic mm Hg</td> <td>:</td> <td><?php echo $row["systolic"]; ?> </td> …

Member Avatar for PsychicTide
0
281
Member Avatar for bestnone

this is my selection option database from "lecturer" table from subjects No. subject credit_hour capacity 1 (111) AAA 3 20 2 (222) BBB 4 10 3 (333) CCC 3 30 This is my option which is displaying the option using ajax which is testing1.php <?php $conn = mysql_connect('localhost','root','password'); mysql_select_db('lecturer'); if …

Member Avatar for diafol
0
208
Member Avatar for Izzah_1

hey guys so im doing a really simple sign up form but its not working. maybe im doing smtg wrong. form: <form method="post" action="PersonalDetails_Process.php"><!--link to DB--> <br> <h1><center>PERSONAL DETAILS</center></h1> <br> <br> <label>Name <span class="small">Add your name</span> </label> <input type="text" name="name" id="name" required /> <label>Phone <span class="small">Add your phone</span> </label> <input …

Member Avatar for zouhair.kasmi
0
234
Member Avatar for patk570

Hello everyone, I have a code to display images in a table for a specific ticket. I am needing the table to be 4 columns wide then repeat until there is no more images to show. Here is my code: <?php $folder = "images/ticket_images/".$_REQUEST['ticketid']."/"; $filetype = '*.*'; $files = glob($folder.$filetype); …

Member Avatar for patk570
0
171
Member Avatar for Giedrius_1

Hi, I've been recently trying to create a language change script. Everything goes smoooth but there are several complexed places inside the page that needs some advanced php code. So the main problem is: I do not know how to make a variable from main page work in array. $eng …

Member Avatar for broj1
0
215
Member Avatar for bestnone

this is my table subjects in lecturer database No subject credit_hour 1 (111) AAA 4 2 (222) BBB 3 3 (222) CCC 4 4 (333) DDD 3 this is my testing1.php <?php $conn = mysql_connect('localhost','root','password'); mysql_select_db('lecturer'); if (mysqli_connect_errno()) { echo "Failed to connect to MySQL: " . mysqli_connect_error(); } ?> …

Member Avatar for bestnone
0
129
Member Avatar for tony75

Hi I would like my markup look like this demo bu I got wrong!!! I will be grateful for your help http://puu.sh/5tYXV.jpg This is my php code. <div id="container" style="text-align: center"> <header style="text-align: center">Header</header> <nav>nav</nav> <aside>aside</aside> <section id="content"> section id="content" <br> <article >article</article> <br> <article>article</article> <br> <article>article</article> <br> </section> <footer>footer</footer> …

Member Avatar for ingolfsson
0
155

The End.