39,320 Topics
| |
If you don’t know much more about php programming then read it this. It should be useful for you. As you know In Today’s time PHP is a most used scripting language, it’s also used in standalone graphical applications. PHP was originally created by Rasmus Lerdorf in 1995, and PHP … | |
I have an issue with a production site - www.successby6kfla.ca - see all the headings garbled? Another issue is in the admin panel. When trying to edit a page this error comes up Undefined GET property or variable in 'Page' class: Menuitem Exception Type: QUndefinedPropertyException Source File: /home/uwaykfla/public_html/sb6/admin/view/public/dsp_editPage.php Line: 27 … | |
HI, If I use PECL Filter for validating a form data Is it safe to use in database queries?Is it implement mysqli_real_scape_string to the values ? Thanks | |
Ok, so i am using windows task sheduler to open the browser and run the php script file. Now, the problem is that i want to do it on the machine which doesnt have Apache (or any other web server ) installed. What is the best way to make sure … | |
I wrote a simple code in java script and it is working fine with IE and not in Firefox but the out put in php array count is correct in IE but not correct in Firefox <script language="javascript"> var arrdimensions = { "codimesion":{"s":{'0':'dimesion1','1':'dimesion2','2':'dimesion3','3':'dimesion4','4':'dimesion5','5':'dimesion6','6':'dimesion7'},"c":1,"m":"50", "sc":1, "f":"nopcs[]"} }; function adddimensions(what) { parentId … | |
I need password changing code Please help! Please it's urgent. Database :-members Table:- userid int(12) name varchar(150) surname varchar(150) username varchar(150) password varchar(20) How to allow user to change their old password and set new password? | |
Hello all, This seems like a helpful little forum, so here goes. I'm getting the Cannot modify header information error. All of the solutions that Google has brought me to tells me to remove the white space around the opening and closing php tags. Well, there is no white space … | |
Hello everyone I am quite new here and have a very tricky issue that bothers since days. I posted the question on the PHP forum together with a sample of my embarrassing code. If this is wrong that I raise the issue here in MySQL forum, too, please forgive me, … | |
Hi everyone and HAPPY NEW YEAR :S (not sure if I am at the right place here but since I am pretty new, please don't scold me to death, just let me know and the next time ther won't be such next time, promise) I have a simple but effective … | |
[code] <?php include "config.php"; include "header.php"; echo "<tr>"; echo "<td width=\"250\" valign=\"top\">"; include "left.php"; echo "</td>"; echo "<td width=\"4\" bgcolor=\"#CCCCCC\"> </td>"; echo "<td width=\"550\" height=\"320\" align=\"left\" valign=\"top\"><h3 align=\"left\" class=\"pagesect judul_besar\"> <span class=\"menu1\"> Sistem Pakar Gangguan Perkembangan pada Anak</span></h3>"; echo "<p class=\"pagesect judul_besar\">"; echo "<blockquote>"; if(!pasien()) { echo "<div align=\"center\"><span class=menu>Access Denied !!!</span></div>"; … | |
Hi, I want to print the specific data from page instead of Full page data. So i can't use window.print method. I have take my data in $data variable. i want to print only this data. any other method for print selected data??(not full page) | |
Hi to all, I want WYSIWYG editor with different language like english,hindi,e.t.c, to type in text area. (EX:In gmail go to compose mail see how to change languages to type text in text area.). thanks in advance. | |
I need help convert from vb6 to php, this script for encrypt or decrypt some text and protected with password. Please i really need this, thank you. Private Sub Command3_Click() Dim S1, S2 As String S1 = RndCrypt(Text1.Text, "yourpassword") Text2.Text = S1 End Sub Function RndCrypt(ByVal Str As String, ByVal … | |
Hi guys, I've got a data scraping script that is not picking few html elements/fields that I need. I can't get the following elements: product title price and specification It could be that the xpath is not correct since the website has a lots of div/tables without any id or … | |
This is a code for my radio station schedule, which works well, no error messages: [CODE] <? //connect to mysql //change user and password to your mySQL name and password mysql_connect("localhost","root","PASSWORD"); //select which database you want to edit mysql_select_db("radio1"); //select the table $result = mysql_query("select * from schedule order by … | |
Hi there! I'm having this problem with LinkMachine. When I try to go to its login page (linkmachine/linkmachine.php), I get a completely blank page. I tried checking the apache's error log, and I get the errors: [CODE]SoftException in Application.cpp:256: File linkmachine.php is writeable by group. Premature End of Script Headers … | |
hi, i don't know if it's the right place, but - i've been trying to install a cms on my server, but i get this message - warning: mysql_num_rows(): supplied arguments not valid mysql result resource in .../install.php i've looked into the code but haven't seen anything wrong with it. … | |
Helllo freinds, I am a new babie to codeigniter.On admin side i m getting an error that is after login a black page get displayed.I am not getting what is exactly problem is.So I am pasting my code below. please if possible help me. [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML … | |
I h've developed web based chat system there is need to add new users into chatting app . After successful registration how to add new user automatically into this system? | |
Hi all, I'm trying to create a curl script that will query a remote server using php/cURL via a form submission. - submit a form with two values (member id, postcode) - 1 value is only numerical, postcode is alphanumeric - if a result is found then display that NUMERICAL … | |
Hi, There will be more than 3000 users will upload word document to different folders on my webspace at SAME TIME. How should handle it? I did file uploads but not for more than 4 or 5 user uploded at a time. PHP and MySQL is used. Thanks | |
Hi, I tried to work this query out for a while but till now i still couldn't find what actually went wrong. This search query has 2 search query option. 1) wildcard text search box 2) drop down list option A user can either choose to search by (1) or … | |
hello... i am doing one project. in my registration page all javascript validations are working in mozilla firefox. but it is not working in internet explorer. anybody knows what is the problem is der? | |
[code] <?php $MD5Code = "kikugalanet"; // Your Neuz MD5 Code $dbAddr = "127.0.0.1"; // Your MSSQL Host IP $dbName = "ACCOUNT_DBF"; // Your Account Database $dbUser = "sa"; // Your Database user $dbPass = ""; // Your Database User password if(!extension_loaded("mssql")) { echo "The MSSQL extension is not enabled on … | |
How to replace one backslash with two? This code doesn't work: [CODE] $msg = str_replace("\","\\",$msg); [/CODE] PHP will two backslashes insert into database as one. If is there one backslash it will return a parse error. | |
Today went to use GD within PHP and a simple check of phpinfo() showed it wasn't installed, but running php -m show that both (pdo_mysql and gd) where installed. Does anyone know how to sort this? [INDENT] [CODE] - PHP Modules ctype curl date dom exif filter ftp gd <-- … | |
Hi, The problem is that a Uni I am creating a PHP/MySQL based game. I have got it working for multi user movement and picking up objects but the trouble im having is implementing the puzzles into it. I have the user table which has my puzzles as: puzz_1, puzz_2, … | |
Not sure if this is the right forum - but i will be coding the solution in PHP though (i think) if thats worth anything... Im doing a bit of work surrounding the area of journey planning, and im just wondering, how the heck do they do it? Say for … | |
Hi..Have you created a program using ms word? i want my system display the records in ms word...when you click the submit button,ms word will open and you will see all the records saved from the database..What are the codes i will used.?tnx in advance.. |
The End.