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.

~6K People Reached
About Me

Website Administrator

Interests
Reading and applying; creating and experimenting.
Member Avatar for emiola

Hello, kindly look at my php code to insert registration data into a MySQL database. Here is the code below and further below, the error response I keep getting. <?php error_reporting(E_ALL); ini_set('display_errors', 1); $servername = "localhost"; $username = "emiola"; $password = "emmybaba2020"; $dbname = "tutors"; // Create connection $conn = …

Member Avatar for AndreRet
0
107
Member Avatar for ajelliott

I have good design skills and want to create web pages but I dont want to do web development or programming. There is so much out there and so much of it is complicated. I want to keep it real simple. I have Dreamweaver but not a lot of time …

Member Avatar for Paul_49
0
1K
Member Avatar for yomr

here is my dilemma I have a database that consists of tables (duh!) for an award nomination project where I have a table for nominees and a table for each category of qualifications for example table 1 (nominees) name ID_NUMBER PK DEPARTMENT NAME PHONE# table 2 (education_information) ID_NUMBER FK DEGREE …

Member Avatar for agbenaza
1
246
Member Avatar for Fafnir

Hello, I’m trying to spec a Windows Server setup for 110 users spread over 16 sites, with about 50 of those being connected between 9-5. My initial spec for this is two HP Proliant ML350 G6 with a Xeon Quad Core 2.4GHz in each, 12GB of RAM in one and …

Member Avatar for Fafnir
0
203
Member Avatar for emiola

Hello, Kindly take a look at the code (use view source) of this webpage [URL="http://www.qestinfosystems.com/oaaco"]http://www.qestinfosystems.com/oaaco[/URL]. The "About Us" button is supposed to have a dropdown menu but for a reason/reasons bearting me, the dropdown fails to show up on mouse hover. See the css file [URL="http://www.qestinfosystems.com/oaaco/mainstyle.css"]http://www.qestinfosystems.com/oaaco/mainstyle.css[/URL] Advice needed please. See …

Member Avatar for simplypixie
0
107
Member Avatar for emiola

Hello, I need my web users to send an uploaded file along with their registration data. The form will be sent via email while at the same time, the uploaded file will be stored in a folder on my server. Take a look at the code please: [CODE] <?php if(isset($_POST['email'])) …

Member Avatar for somedude3488
0
255
Member Avatar for divyakrishnan

Hi... I want to move an uploaded file to another machine.I had given the file path to move_uploded_file() function including IP address .The folder is a shared folder.My code shown below. [ICODE]<?php if ($_FILES["file"]["error"] > 0) { echo "Error: " . $_FILES["file"]["error"] . "<br />"; } else { echo "Upload: …

Member Avatar for emiola
0
112
Member Avatar for macneato

Over the next few weeks (or days - depending on how much time i have) I'll help with the very basics of SQL (and PHP). These are the points I'll be covering (all from scratch of course) Local Server setting up [LIST] [*]php [*]mysql [*]apache [/LIST] Database Basics [LIST] [*]Simple …

Member Avatar for peter_budo
0
226
Member Avatar for rojanjcb

do anyone knows how to connect to a MS SQL server(database in internet,i have ip,db username and db password).i used mssql_connect from my PHP ,but how to activate it in windows or Ubutu.i download all dll files needed but i cant connect..pls help me....

Member Avatar for tlore22
0
116
Member Avatar for emiola

Initially I was using a switch to connect all my 5 desktop systems using one of them as my internet server/gateway. On that particular internet server-desktop pc, I use the Sierra wireless Aircard 580 modem which I adapted with a pcmcia-pci card. I used the ICS to share out internet …

Member Avatar for freshfitz
0
189
Member Avatar for valinux

I've been reading all this stuff about Linux and how it is open-source for everything, and that is one of the great things about it. But I haven't really seen anything. On the one hand I have just switched to Linux so don't really know anything. Please correct me if …

Member Avatar for valinux
0
126
Member Avatar for emiola

Hello forum members, Due to the very slow speed internet access I use, I find it almost impossible to successfully download and burn any linux installation live cd (especially ubuntu and fedora10). I have been reading studiously in preparing myself technically for server administration using linux for the past four …

Member Avatar for krnekhelesh
0
285
Member Avatar for emiola

Hello forum members, Due to the very slow speed internet access I use, I find it almost impossible to successfully download and burn any linux installation live cd (especially ubuntu and fedora10). I have been reading studiously in preparing myself technically for server administration using linux for the past four …

Member Avatar for emiola
0
178
Member Avatar for eduserve

DETAILS OF THE SCHOOL PREMISES :- MAIN DETAILS:- TOTAL FOUR FLOOR (GROUND +3)> EACH FLOOR GOT FOUR BIG ROOMS(400 SQ FT.) AND TWO SMALL ROOMS (100 SQ. FT.) ONE OF THE BIG ROOM (2ND FLOOR) ALREADY CONTAINS SETUP OF 15 COMPUTERS CONNECTED TO EACH OTHER VIA DLINK 24 SWITCH. (WORKING …

Member Avatar for emiola
0
142
Member Avatar for phpNewbie

i'm still struggling with php - its soooo confusing to me this is the code i have now - is it in the wrong order? or whats missing please to make it work - i'm trying to get a result if 'both' genders are selected and if 'any' origin is …

Member Avatar for phpNewbie
0
141
Member Avatar for emiola

Despite the fact that my script runs perfectly well on the server, it fails to submit form data into mysql database. Kindly look into this for me. see code below: [code=php]<?php> $dbcnx = mysql_connect("localhost","user_name","password"); if (!$dbcnx){ exit('<p>Unable to connect to the database</p>'); } If (isset($_POST['submit'])) { $SchoolName = $_POST['SchoolName']; $SchoolEmail …

Member Avatar for nav33n
0
227
Member Avatar for emiola

I keep on getting this message: Parse error: syntax error, unexpected T_ECHO in /home/lsschnln/public_html/Registration Form/quiz_regedit_2.php on line 32 after running the script [code=php]<html> <body><?php if (isset($_POST['submit'])) { $to = "quizentry@lagosschoolsonline.net" ; $subject = "Quiz Entry" ; $SchoolName = $_POST['SchoolName'] ; $SchoolAddress = $_POST['SchoolAddress'] ; $Locality = $_POST['Locality'] ; $MobileNumber = …

Member Avatar for nav33n
0
139
Member Avatar for emiola

Dear friends, Kindly look into this code below for me. I intend to use it to send my form data(not validated) to an email address. After I filled the form and running the code, it is the else echo statement ("Form not properly completed") that i keep recieving. However, I …

Member Avatar for somedude3488
0
143
Member Avatar for emiola

I have been finding it difficult to understand the error statement I recieved from my php file using the code below. I keep on getting this result: [COLOR="Red"]Parse error: syntax error, unexpected T_STRING, expecting '(' in /home/username/public_html/application_form.php on line 28[/COLOR] [code]<?php echo "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?".">"; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD …

Member Avatar for mschroeder
0
133
Member Avatar for Mujahid MMS

I am starting to learn php and web designing but I don't know how to start so I need your help.Some tutorials and environment on which I will do programmig. Please help me. Email me at <EMAIL SNIPPED> Thanks

Member Avatar for emiola
0
63
Member Avatar for infotechland

I've been looking into getting my own WYSIWYG editor, to play around with, I plan on going into web design when I get out of the army. I was wondering if Frontpage is any good? I have the opportunity to get it in a sealed condition from someone in my …

Member Avatar for jbennet
0
200
Member Avatar for kevin wood

have had to move some file across from one server to another and i am now getting access denied for user. it also says it could not connect to the server. i have changed the site path so it is now the address where the files have benn moved across …

Member Avatar for chaosprime
0
152
Member Avatar for emiola

Hi, I have noticed that a lot of newbies using MySQL ODBC driver on their Windows often come across difficulties testing the connection despite that they have created the database on their servers. If you can put our members through in step wise fashions, please respond to this tread. It …

Member Avatar for tesuji
0
145
Member Avatar for 2eXtreme

Hey guys, can someone please tell me how I can connect to a remote Oracle DB using WAMP (Windows Apache MySQL PHP) installed locally on my machine?

Member Avatar for emiola
0
777
Member Avatar for TheBeast32

Hi, I have been trying to get MySQL to work on my apache server with PHP on it. My Apache version is 1.3.29 and my PHP version is 5.0.0RC2. I'm also running Windows XP Professional SP2 32 bit. I tried modifying the php.ini file to load the php_mysql.dll, but I …

Member Avatar for emiola
0
110
Member Avatar for wegdan

what is a database driver (such as microsoft provider) and a database provider(such as jdbc driver , odbc driver , dbole driver) and what the importance of each of them?

Member Avatar for emiola
0
88
Member Avatar for emiola

Hello Forum members, My name is Emiola Taofeek. I joined daniweb in a determined search of knowledge on ASP scripting. I am a graduate of Biological Sciences from the university of Abeokuta (UNAAB) Ogun State, in Nigeria. My determination to become a business owner drove me into web design and …

Member Avatar for zandiago
0
158