Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,154,095 members, 7,821,786 topics. Date: Wednesday, 08 May 2024 at 06:26 PM

Pagolina's Posts

Nairaland Forum / Pagolina's Profile / Pagolina's Posts

(1) (of 1 pages)

Programming / Re: Phpbrowserbox Update - Google Chrome + PHP/MySQL Server In One! by pagolina: 2:07pm On Sep 13, 2016
Yes is true, i notice the same issue, when running on a system without wamp it display the splash screen after which is shows blank not loading the index page in htdocs. when i run it on a system that have the latest wampserver, it run fine. so i thought it could be needing the MS c++ redistribution 2012 since it's using apache 2.4, so i installed that still nothing happen. i have try it on win8.1, 10 and 7. i dont know if something else is required, However, this is could be one of the best php packaging software developers will need if it work as required
Webmasters / Integrating Fingerprint Scanner In Web Applications by pagolina: 12:05pm On Jul 14, 2016
Am working on a web application that require fingerprint capturing as part of registration, the application is develop with phpmysql. my challenge is integrating fingerprint capturer in my registration process, just as is done in jamb or other better applications. i have digitalpersonna u.are.u 4500

Pls any idea as to how i should go about it?
I have integrated fingerprint scanner in desktop applications using java and is working fine, but getting this done in web application is my problem.

I appreciate any support in advance.
Programming / Integrating Fingerprint Scanner In Web Application by pagolina: 11:55am On Jul 14, 2016
Am working on a web application that require fingerprint capturing as part of registration, the application is develop with phpmysql. my challenge is integrating fingerprint capturer in my registration process, just as is done in jamb or other better applications. i have digitalpersonna u.are.u 4500

Pls any idea as to how i should go about it?
I have integrated fingerprint scanner in desktop applications using java and is working fine, but getting this done in web application is my problem.

I appreciate any support in advance.
Webmasters / Re: Warning: Failed Opening 'library/closedb.php' For Inclusion by pagolina: 4:42pm On May 07, 2010
i have been able to do away with the library/file.php that brought warning msg

Now the image is going to a temporary folder (uploads)
when i insert it into my db it enter but when i retrive it via sql statement is not showing on echo rather the file path is showing why?.

pls if sombody can show me the easiest way to upload image to the db and display it on a webpage i will be very gratefull
thanks
Webmasters / Excel To Mysql Or Sql File Type by pagolina: 3:50pm On May 06, 2010
I have a file in m.s excel, i want to export it to .sql format so i can easly inport it via phpmyadmin.
how do i get the excel file in .sql format?
your response is highly welcome
Webmasters / Warning: Failed Opening 'library/closedb.php' For Inclusion by pagolina: 12:48pm On Apr 30, 2010
I have a form that contain file field, I want the user to upload file (image) as part of the form.
other part of the script work fine EXCEPT this include statement (include 'library/config.php' and include 'library/opendb.php' ) that return an error msg like this

Warning: Failed opening 'library/closedb.php' for inclusion (include_path='.;C:/phpdev/php/includes;C:/phpdev/php/class') in c:\phpdev\www\phpnew\uploadok.php on line 27

that's my problem it fail to open any include library/files.php why? and how do i handle this? Your response will be highly welcome.

my procesing script goes like this.


<?php
if (isset($_POST['upload'])&&$_FILES[userfile][size]>0)
{
$fileName = $_FILES['userfile']['name'];
$tmpName = $_FILES['userfile']['tmp_name'];
$fileSize = $_FILES['userfile']['size'];
$fileType = $_FILES['userfile']['type'];

$fp = fopen($tmpName, 'r');
$content = fread($fp, filesize($tmpName));
$content = addslashes($content);
fclose($fp);

if(!get_magic_quotes_gpc())
{
$fileName = addslashes($fileName);
}

include 'library/config.php';
include 'library/opendb.php';

$query = "INSERT INTO upload (name, size, type, content ) ".
"VALUES ('$fileName', '$fileSize', '$fileType', '$content')";

mysql_query($query) or die('Error, query failed');
include 'library/closedb.php';

echo "<br>File $fileName uploaded<br>";
}


?>



or is there any other way i can upload image as part of my form easyly?
Webmasters / Re: How To Display Downlines, Phpmysql by pagolina: 9:58am On Mar 19, 2010
the new user and the refferal are on the same table.
if there is another way i can display downlines, i.e the new user under the refferral i will also appreciate it
Webmasters / Re: How To Display Downlines, Phpmysql by pagolina: 9:44am On Mar 19, 2010
No error message,
the mysql_num_rows() keep returning 0 (null) while there is record in the database.

other part of the page using the same database and table are working, so i dought if there is any problem with the database
Webmasters / How To Display Downlines, Phpmysql by pagolina: 7:49pm On Mar 18, 2010
I have a select statement that filter record with where clause like this

<?php
$dlines = mysql_query("SELECT NAME,USER_ID,REF_ID from members WHERE REF_ID='$m_uid'"wink or die(mysql_error());

//the $m_uid is the user id


while($m_row2=mysql_fetch_array($dlines,MYSQL_ASSOC)){
echo "<tr>";
//echo "<td><a href='admin_edit.php?name={$row['NAME']}'>{$row['NAME']}</a></td>";
echo "<td>{$m_row2['NAME']}</td>";
echo "<td>{$m_row2['USER_ID']}</td>";
echo "<td>{$m_row2['REF_ID']}</td>";
$duid =array($m_row2['USER_ID']);
// echo "<td><a href='delete.php?dlet={$row['USER_ID']}'><img src=", /img/jpg/dlete.jpg" width="30" height="30"/></a></td>";
echo "</tr>";
}

this script is working on my system but is not working online WHY?

each other way can i display downlines
Webmasters / Re: Smtp Mail Not Sending by pagolina: 3:47pm On Mar 11, 2010
i also try to use phpmailer 5 but maybe am having problem on installing phpmailer 5
because when testing the installation with

<?php
require("class.phpmailer.php"wink;
$mail = new PHPMailer();
?>

i received this error message

Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in c:\phpdev\www\cashtree\register\class.phpmailer.php on line 53

Fatal error: Cannot instantiate non-existent class: phpmailer in c:\phpdev\www\cashtree\register\findout.php on line 6

line 53 contain : public $Priority = 3;

if the phpmailer work, i would have stick to it for now while working on the order one
Webmasters / Re: Smtp Mail Not Sending by pagolina: 3:40pm On Mar 11, 2010
dhtml

i have tested it on outlook is working fine
Webmasters / Re: Smtp Mail Not Sending by pagolina: 10:25am On Mar 04, 2010
No error message at all !
Webmasters / Smtp Mail Not Sending by pagolina: 1:42pm On Mar 01, 2010
help pls!!
have been trying to integrate smtp mail on my site with the code below, but yet is not sending why? check the code:

require_once "Mail.php";

$from = "admin <support@mydomain.net>";
$to = "$name <$mail>"; //variable that contains receiver name and email
$subject = "thank you";
$body = "Hi,\n\nThank you, Your Registration with us is Successfull \n\nTo activate your account click here ";

$host = "mail.mydomain.net";
$username = "support@mydomain.net";
$password = "password";

$headers = array ('From' => $from,
'To' => $to,
'Subject' => $subject);
$smtp = Mail::factory('smtp',
array ('host' => $host,
'auth' => true,
'username' => $username,
'password' => $password));

$mail = $smtp->send($to, $headers, $body);

if (PEAR::isError($mail)) {
echo("<p>" . $mail->getMessage() . "</p>"wink;
} else {
echo("<p>Message successfully sent!</p>"wink;
}
?>
Webmasters / Php Pin Generation Script by pagolina: 4:38pm On Nov 28, 2009
am familiar phpmysql but i cant write this script. i want to write a php script that can generate pin ramdomly
how do go about it?
Webmasters / Phpmysql Auto Generation Of Numbers by pagolina: 4:09pm On Nov 28, 2009
Hello Every Body!!

I need help on how to write this code, i want to automatically generate IDs like (true0001, max2009001,) using php.
i try the ++ in php but did not get what i want

help pls??
Webmasters / Re: Uploaded Image Do Not Display On The Form Why? by pagolina: 3:36pm On Aug 21, 2009
ya-wa-ti-de, thank you very much for your contribution

is there any place i can get prewriten javascript for that? and how to use it with my form
Webmasters / Uploaded Image Do Not Display On The Form Why? by pagolina: 3:06pm On Aug 21, 2009
hello every body!

i have a form, i want client to upload there passport (image)
so i use a file upload field (form object) and yes they can brows for file and upload
but what i see is the path and the image did not display for them to view it on the form beform submitting it. pls i want the image to display, also i want to choose the file types and size b/4 the form will accept it, how do i get that?

i make use of php/mysql
imagine you are bulding a web form that somebody can upload image what do you do?
Webmasters / Image In File Upload Does Not Show Why? Help Pls by pagolina: 6:31pm On Jul 15, 2009
Am working with dreamwerver and i have a form, on it i also have file upload field to upload image, but when image are uploaded i can only see the path not the image (the image does not show in dreamwerver or even on preview).

I want the image to show in a box as part of the form contect, how do i achieve that?
your contribution will go a long way!!!
Webmasters / Sms Gateway Help! by pagolina: 11:54am On Jul 13, 2009
pls how can i put sms gateway in my site?
i want the site to be able to send sms to mobile phone,
your contribution will go a long way!
Webmasters / Re: Jquery Issues by pagolina: 6:46pm On Jul 02, 2009
hello dhtml, here goes the details of the question
i have a form that contains the following field,
country
state
lga

i also have my mysql db (register) that contains tables (regtable) of those field.

i want a situation where if somebody select country it will generate the value of state and if the state is selected it will generate the value of the lga,
so how do i use jquery or other thing for it?

i don't know if the details above is OK?
Webmasters / Jquery Issues by pagolina: 12:53pm On Jun 29, 2009
Any way to autopopulate form elements using jquery and its ajax
function from a MySQL database?
Webmasters / Sql Injection How Do I Prevent It by pagolina: 12:34pm On Jun 29, 2009
can some body help me?
i run my application with php mysql
how do i prevent it from being hack via the login field?

thank you
Webmasters / Re: Dynamic Form, Php Mysql Application by pagolina: 3:08pm On Jun 27, 2009
so if i want to use jquery how do i use jquery to achieve that
Webmasters / Php Record Counter by pagolina: 3:26pm On Jun 26, 2009
can some body help me?
am designing my application with php mysql.
i have about 100 record in a particular table,
i want to display some thing like this on a particular page

100 registered
26 female
74 male
80 member
20 pending

pls how do i get this statistic with phpmysql?
Webmasters / Dynamic Form, Php Mysql Application by pagolina: 3:07pm On Jun 26, 2009
i had a problem designing this web form,

the form contain COUNTRY, STATE, LGA, and the form object are drop down menus/list.
i want the user to choose the country and it will generate the values of the state from the database,
when the user choose the state it will generate the LGA from the database tool,

how do i do it?

i use php mysql for my application

(1) (of 1 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 34
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.