Jump to content

starphp

Members
  • Posts

    61
  • Joined

  • Last visited

    Never

Everything posted by starphp

  1. hello, I am working on my own project and wish to integrate the Invite Friend feature. This need the php script to read contact list og GMail, MSN, Yahoo & AOL. Can you suggest any packages for doing this ? I have searched but none of the packages works well.. Thanks in advance
  2. Yes, thats good.. and is going on every place.. I am checking whether this way, can I get some clients ? And more than that, will get some initial funds..
  3. Not posted for work........ I am checking whether it works or not.. to know opinion abt the team members..
  4. Hello, I am thinking about providing support .. mostly to maintain website and add modification.. will someone ready to pay in advance for me ? Because, they may think abt the security aspects..
  5. For the filed, MONTH used "char (2)" For the Year filed used "Year (4)
  6. It displays the Month in the descending order but not the Year.
  7. I wish to select records order by two fields in the descending format: table: details id month year 1 -----01 ------ 2009 2 -----05 ------ 2008 3 -----05 ------ 2009 need a recent records ie 05 - 2009 then 01 - 2009 then 05 -- 2008 Is that possible with SQL Query ?
  8. Paypl provide a Add to cart service. ( A shopping cart, managed on payapal's site). Will we get payment details after the payment, so w ecan update the database.. ? They will send the details through mail, but I need it to the php page..
  9. Hello, For studying, I have started to work on a project which uses ZFramework.. I have set up the files and started the user registration.. Some of my doubts on this sections are: 1. Where will I write the common functions for the project ? (such as functions.php ) 2. I have created a Model for some common functions and tried to call it from Controller But it returns a fatal error. The code is: $functions = new Livefunctions(); $this->view->days = $functions->getDays(); The class "Livefunctions is available in the path: application/models/Livefunctions.php Code: class Livefunctions extends Zend_Db_Table_Abstract { public function getDays($month='', $year='') { } } Error is: Fatal error: Class 'Livefunctions' not found in D:\xampp\htdocs\live\application\controllers\IndexController.php on line 10
  10. If you are talking about finding the number of posts in wordpress, then it is possible by executing a query in the wordpress table "wp_posts" and check "post_author", the user who posted the blog
  11. Can use body onLoad <body onload="javascript:removeTheMessage();">
  12. Yes, its almost completed the coding side. Client asked me to comment about the technology side aspects to take care before the launch. Sorry, due to the agreement, I can't disclose the url!! It is my first freelance work after I resigned from job, so my future is depends on this work.
  13. Hello, what are the items need to do from the technology side to be ready for go-live ? Thank You
  14. Yes, I used a JQuery plugin and implemented the user name selection.. But I passed the data as normal rather than xml .. what is the importance of passing data as JSON or XML format ? Close icon, I meant after selected or typed a user name, soon the text will be formatted and there is a close icon at the end of each user name.. we can remove the user names by just clicking on the icon at the end..
  15. Hello, I wish to create a "Compose Message" user interface which looks similar to facebook's compose message. When I type the name, it will suggest the similar names.. Another feature is, need a close icon in the selected ids.. How can I create these two feature in a php environment ? Is there any javascript plugins or libraries are there?
  16. It only requires few lines of code But I don't like to write the code here. Actually, I am using some opensource scripts for doing this. Please make a search on Google or use the following link to get a number of examples: http://www.google.co.in/search?hl=en&rlz=1C1GGLS_enIN323IN323&q=pagination+class+using+php+mysql&btnG=Search&meta=&aq=f&oq=
  17. By setting a php error handler, you can do this. It is possible to log the errors or you can stop the execution. Please have a look on the php function: set_error_handler("customErrorHandler"); function customErrorHandler($error_level, $error_message, $error_file, $error_line, $error_context) { exit("$error_message"); // You can also, log the error to a php file and can be view from there also. }
  18. Hello, I am on the search of a web hosting firm, that provides the following: 1. I have a domain registered on another firm.. Need to move this to the new firm 2. Can send un limited emails.. 3. Have good control panel to manage server (like plesk or cpanel installed) 4. Good space with less amount. oh I am sorry, basically I am a programmer and don't have much idea abt hosting. I wish to create some site and to market them instead of doing freelance work whole day.. Thank You
  19. I agree with the long procedure of freelance websites. It need good profile & experience in that freelance site to get a job... I also got some responses from the freelance board of this phpfreaks but still couldn't make an agreement with any of the person..
  20. Yes, I understand the difference.. So it need to use the format below right ? $date = date("Y-m-d H:i:s");
  21. Sorry, I don't get what you suggested last time. Anyway, I wish to make some explanation: I have stored the datetime value in MySql like this $date = date("Y-m-d h:i:s"); INSERT INTO table (fieldName) VALUE ('$date') Then I read the value of date field from database and format the date as I mentioned above.. Then all values will be expressed on am. But if I format the $date variable at the same time while inserting the value into database, it will return the value as pm.. So I am asking abt, whether I need to store the time() value (returned by php) in database instead of the value $date to get the correct am-pm
  22. Use the count() .. SELECT COUNT(*) as count FROM YOUR_TABLE_NAME; If needed, please add WHERE clause or refer to site.. for the syntax and more details about the COUNT()
×
×
  • 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.