Jump to content

neo777ph

Members
  • Posts

    54
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

neo777ph's Achievements

Member

Member (2/5)

0

Reputation

  1. Hi people.. hope you could help me. Here are my related questions.. Can a Daily Time Record System that uses Fingerprint Scanner be implemented using PHP, APACHE and MySQL? If yes, What should I download and configure on php and apache? If yes, Can you provide me any website that shows BASIC tutorial on PHP implementations using a fingerprint scanner. The specific name of our fingerprint scanner is Fingkey Hamster II. This is a product of NITGEN biometric solutions.. Here is the official publication of the product.. http://www.nitgen.com/New_site/eng/product/pc_hamster2.asp Thanks a lot guys! more power to OPEN SOURCE TECHNOLOGY!! AS ONE!
  2. when i view my XML spreadsheet file on EXCEL the format of my date is MM-DD-YYYY but when i view it on Notepad++ the format is /YYYY-MM-DDT00:00:00.000/, I believe this is the default for XML Spreadsheet. However, what I needed is the format MM-DD-YYYY. I tried to use Trim,substr,and explode to clean the data..however the "/" on both end are always retained. I need to remove it "/" before i could insert the date on my DB.hope you could help me. thank you.
  3. Notice the example XML Spreadsheet below: <?xml version="1.0"?> <?mso-application progid="Excel.Sheet"?> <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40"> <DocumentProperties xmlns="urn:schemas-microsoft-com:office:office"> <Title>Vendor Batch Upload</Title> <LastAuthor>eniogui</LastAuthor> <Created>2007-08-28T05:54:25Z</Created> <Version>11.8132</Version> </DocumentProperties> <ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">... And So and so forth.. I tried to get the Value of Element "Title" in this case the value would be "Vendor Batch Upload", I had already tried using the following codes below..but no success..please help.. <?php $doc = new DOMDocument(); $doc->load($filedir); $docheaders = $doc->getElementsByTagName( 'DocumentProperties' ); $test =$docheaders->getElementsByTagName(Title); echo $test->nodeValue; ?> No output.. => pls help me.. thank you.
  4. i tried to echo the index of the DOMElement.. however nothing is shown.. please see my code... $doc = new DOMDocument(); $doc->load($filedir); $rows = $doc->getElementsByTagName( 'Row' ); foreach ($rows as $row) { $cells = $row->getElementsByTagName( 'Cell' ); foreach ($cells as $cell) { //echo $cell->nodeValue; print_r($cell->hasAttribute('Index')); $indexvalue = $cell->getAttribute( 'Index' ); echo $indexvalue; //print the attribute value of index. } //end for cells }//end for rows //i tried to echo the $cell->nodevalue and they were shown..however when i try to print out the index attribute of a $cell, nothing is shown. Had I miss something? I need to know the index so that i would know the XML spreadsheet COLUMN my for loop is currently pointing at. Please help me..
  5. Would there be any issues if i literary Copy and Paste a mysql db from one server to another mysql db server? When i say "copy and paste" is just like tranferring one word doc from one pc to another pc. I tried the copy and paste already and the new server had recognize the DB i had pasted. I just want to confirm if there would be issues doing it so.. Or should i use Mysql.com Migration toolkit?
  6. Try this Tutorial It worked on me..I'm using Window 2000 as my webserver. So most probably it would also work on your Windows server 2003. The tutorial was done on XP.. http://www.expertsrt.com/tutorials/Matt/install-apache.html#intro
  7. 1.)what are the pros and cons between MyISAM vs InnoDB? 2.)what is the difference between Collation latin1_swedish_ci and utf8? thank you.
  8. http://www-128.ibm.com/developerworks/xml/library/os-phpexcel/ check that link.. it might help bro!!
  9. help..when i tried to view my web application and not specifying the http://hostname/index.php. the browser shows all the files within that server..Files that are within the HTDOCS folder. How can I restrict none-admin users to view the folders/files using the web browser? and also how can i make it default, that when every time an end-user try to access the system using "http://hostname/" it would show the index page, not the folder and its files? thanks a lot!
  10. tnx for that..you are right..
  11. my server only recognizes codes starting with <?php some codes ?> I want it to recognize <? some codes ?>.. how do i enable shorthand? thank you.
  12. I am trying to migrate our old mysql DB to another new mysql server using AB: MySQL Migration Tool. The migration has some problem. One of the tables from the old DB had a column defined Datatype as DATE. However, when I do migration. The migration informs me that " The following error occured while transfering data from log Cannot convert value '0000-00-00' from column 13 to TIMESTAMP." I believe the migration forces to convert the datatype into timestamp. The work around i can do on this is to change the datatype of the column on the old DB into Timestamp. However, I don't want that. I want to retain the DATE datatype. What should i do? thank you.
  13. "Forbidden You don't have permission to access / on this server." - My browser reflects this error while I had tried to check if apache perfectly interprets PHP files. I am stuck with the httpd configuration. I believe I lack some right's configuration. I just don't know what should o change on the httpd file.please help me. the apache and PHP installer I had used are: apache_2.2.4-win32-x86-no_ssl.msi php-5.2.2-Win32 thank's a lot!
  14. if you only intend to use the value for the next page..you could do this instead.. <? $info =$displayEnteredInfo; ?> <a href="nextpage.php?info=<?=$info?>"> This scenario requires you to you pass first the $displayEnteredInfo value to $info before you use the <a href> tag.. hope i helped you.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.