39,393 Topics

Member Avatar for
Member Avatar for Ventech_IT

Hi guys having some trouble here with my date's output currently it reads 2015-05-05 10:05:22 but i would like to have it render as eg. Monday 12 Mei 2013 how would i achieve this in codeigniter? Here is my code for creating the post: (Controller) public function new_post(){ if($_POST){ $data …

Member Avatar for Ventech_IT
0
342
Member Avatar for OsaMasw

Hello there have a nice day.. I have PHP script to upload files on servers, I want to copy uploaded files once they uploaded on server to another server using PHP ex. upload file F to server A after that copied to server B with same name F. how to …

Member Avatar for diafol
0
318
Member Avatar for AntonyRayan
Member Avatar for smith32
-1
106
Member Avatar for yuri1000

I have a .net/vb code which needs to be converted to PHP, can anyone help please? private string CharsAvailable() { int unicodeFlag = 0; int extraChars = 0; int msgCount = 0; string msgString = String.Empty; if (chkSignature.Checked) msgString = msgString + Environment.NewLine + txtSignature.Text; else msgString = txtMessage.Text; for …

Member Avatar for diafol
0
295
Member Avatar for abhi10kumar

I am trying to upload files into Google Drive but problem is that I have logged-in every time. I searched a lot but no luck. Is there any way I can do authentication process without manual and logged-in intervention? I knew the concept of refresh-token but I am not able …

Member Avatar for diafol
0
97
Member Avatar for anitg

I am trying to use a sms gateway app for android called SMSGateway with a http header request using curl as below; $curl_handle=curl_init(); curl_setopt($curl_handle, CURLOPT_URL,"http://192.168.1.2:9090/sendsms?phone=$phone&text=$message1&password=xxxxxxxx"); curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 10000); curl_setopt($curl_handle, CURLOPT_TIMEOUT,50000); curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl_handle, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; rv:36.0) Gecko/20100101 Firefox/36.0'); $query = curl_exec($curl_handle); if($query){echo "Message Sent to $phone …

Member Avatar for anitg
0
551
Member Avatar for punji

I have three tables namely student, result and subject but whenever i try to join them i get this error message in the browser Database query failed: Unknown column 'student.student_code' in 'field list' here is my query $query = "SELECT student.student_code, student.firstname, student.middlename, student.lastname, student.gender, result.student_code, result.subject_code, result.mark, subject.subject_code, subject.subject_name …

Member Avatar for punji
0
273
Member Avatar for mahbub.cse06

how to create a dropdown menu relatate with php. that means select a division and then a district and a thana

Member Avatar for JerrimePatient
0
104
Member Avatar for janicemurby

hya i have 2 user goups in my website one for couples and one for singles what im wanting to know is when a couple registers how can i direct them to a couples directory ive tried the following but its not doing it can anyone help with this if( …

Member Avatar for edbr
0
353
Member Avatar for janicemurby

Hi i have a date of birth for members in registration form but in the couples profile im adding a date of birth for both members in the couples group as in the pics included heres the coding for it from the profile page can anyone help be much appreciated …

Member Avatar for janicemurby
0
222
Member Avatar for janicemurby

hi i had this script created by a php coder and it worked on another site of mine with same software but now its not working on current site can someone check it out heres code much appreicated Registartion3.php <table width="750" cellspacing="5"> <tr> <td></td> <td></td> <td></td> <td></td> <?php $multiple = …

Member Avatar for diafol
0
137
Member Avatar for Aeonix

The code beneath, is one chunk of code (after "Three."), both `<?php` and `?>` are parts excluded from parsing. 1. One 2. Two. 3. Three. <?php $images = glob("*.png"); $folderRoot = "http://" . $_SERVER["HTTP_HOST"] . dirname($_SERVER["PHP_SELF"]); foreach($images as $imageName) { $imageUrl = $folderRoot . "/" . $imageName; echo "<a href=" …

Member Avatar for Dani
0
301
Member Avatar for phoenix254

Someone can help me to find my error: $query=mysqli_query($con," SELECT * FROM item WHERE ITEM = $ITEM ") or die ( mysqli_error($con)); i reciveing this error,i dont know wherer is syntax error. *You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version …

Member Avatar for cereal
0
234
Member Avatar for noorii72

i dont know how to upload images in a database. i have to make a small gallery project and i am confused about the images uploading..kindly guide me thoroughly.

Member Avatar for diafol
0
54
Member Avatar for AntonyRayan

Hi I am getting error this error while upload image? Error:Fatal error: Class 'Image' not found Code: $gallerycate_img = "gallerycateimg/".$_FILES["txt_photo"]["name"]; $gallerycate_image = $_FILES['txt_photo']['name']; if (($_FILES["txt_photo"]["type"] == "image/jpeg")||($_FILES["txt_photo"]["type"] == "image/jpg")||($_FILES["txt_photo"]["type"] == "image/gif")||($_FILES["txt_photo"]["type"] == "image/png")&& ($_FILES["txt_photo"]["size"] < 200000000)) { move_uploaded_file($_FILES["txt_photo"]["tmp_name"], "../gallerycateimg/" .$_FILES["txt_photo"]["name"]); copy("../".$gallerycate_img, "../gallerycateimg/thumb/".$gallerycate_image); $file_thumb="../gallerycateimg/thumb/".$gallerycate_image; $file_thumb_1="gallerycateimg/thumb/".$gallerycate_image; $img = new Image($file_thumb); $size = …

Member Avatar for pritaeas
0
204
Member Avatar for hasnen_1

hello,how i can share video on my website to facebook and to twitter by meta tags in html and to share image too to facebook and twitter but not all page only share for video and image

Member Avatar for Aeonix
0
288
Member Avatar for Ibrahim_8

I need help with Php forms. I am trying to insert at least 2 & a Max of 3 team players data to MySQL for registration purposes. By using a loop to get the 3 form values and iterate until data is stored in the tables First Table is Players …

Member Avatar for diafol
0
289
Member Avatar for opelio4n

Am a beginnerr in PHP but am presently working on a reporting software that should enable different staff to submit there report. Areas i need help. 1) There are 7 companys that will submit there report on this software. need to know how the database will be structured. 2) How …

Member Avatar for diafol
0
172
Member Avatar for phoenix254

Hi everyone, i need help here.. i want to calculate age of user.... but i am getting this error ****Catchable fatal error: Object of class DateInterval could not be converted to string in C:\xampp**** while($row=mysqli_fetch_assoc($data)) { $date=$row['Dateofbirth']; } $dob= new DateTIME($date); $interval=$dob->diff(new DateTIME);

Member Avatar for phoenix254
0
108
Member Avatar for janicemurby

hi i have the following error in my sent message file Warning: date_diff() expects at least 2 parameters, 1 given in /home/letsswin/public_html/sent_mail.php on line 146 Show Heres code section for error <?php $lastlog = mysql_fetch_array(mysql_query(" select * from user_lastlogin where online_status = '1' and user_id = '".$user_id."' ")); $start_date = …

Member Avatar for janicemurby
0
330
Member Avatar for ribrahim

Hello, I have two mysql tables, the first one for salutation (salutationId, SalutationTitle) and the second one for clients (Id, FirstName, LastName, salutationId) . I can do the dropdown list from salutation which contais (Mr., Ms. ...etc) in a regitration form and insert the data to mysql without problem. Here …

Member Avatar for blueshiftdani
0
267
Member Avatar for younes.keraressi

Hi, i got a problem in my websever, i am using lastest version of uniform server on microsoft windows 2008 r2 , but the problem is the httpd crash i searched for the solution some1 tells that i should use sfc/scannow , i did it same problem , and details …

Member Avatar for younes.keraressi
0
327
Member Avatar for kadriirdak

Hi, I have a range of *start* and *end* dates return from database in while loop i need to find, how many of them are continuing. The example return data; Array ( [start_date] => 2014-09-22 [end_date] => 2014-09-28 ) Array ( [start_date] => 2014-09-15 [end_date] => 2014-09-21 ) Array ( …

Member Avatar for kadriirdak
0
271
Member Avatar for JasonWung

Hi, I have this situation while ($row = $stmt->fetch(PDO::FETCH_ASSOC)){ $images[] = [ 'image' => $row['image'] ]; } function image_html($image) { return '<img src="' . $image['image'] . '" class="img-responsive" />'; } echo '<div class="small-box"> '. image_html($images[0]) .' </div> <div class="small-box"> '. image_html($images[1]) .' </div>'; // some more divs Is it possible …

Member Avatar for ryantroop
0
198
Member Avatar for cristian.stilpeanu.1_1

hello, after I fill the contact form, I get the message that was sent successfully, but my email receive error: A message that you sent was rejected by the local scanning code that checks incoming messages on this system. The following error was given: Erorare reference : This email was …

Member Avatar for cristian.stilpeanu.1_1
0
525
Member Avatar for reminem

Hello everyone, I'm creating a simpel survey tool'. When people insert the question, they can also what kind of question type (checkbox or radiobutton) Adding question and types in the mysql is oke.. I have a problem with showing the type & question Problem: the questions only show if I …

Member Avatar for reminem
0
269
Member Avatar for Sophia_1

Hi, i have problem to save record and send email in php. After selecting the responsible person, the system supposed to save the responsible person in the database and then send email to notify the responsible person on his progress. The coding is below but it doesn't work. Please kindly …

Member Avatar for cereal
0
586
Member Avatar for Jake.20

Greetings Pros, I just want to ask how can i format a certain string to italic. I have this code but it's not working. Well I know it will not work because the array is still in array format not in string yet. Right? $(document).ready(function() { //The demo tag array …

Member Avatar for Jake.20
0
378
Member Avatar for punji

I'm trying to query from two tables but whenever i run my php script i get this error, any help would be highly appreciated Database query failed: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to …

Member Avatar for punji
0
224
Member Avatar for Mimismliey

Well I am quite new to database and I need help to study it effectively

Member Avatar for diafol
-1
64

The End.