Jump to content

aniesh82

Members
  • Posts

    131
  • Joined

  • Last visited

Everything posted by aniesh82

  1. Zend Certified Developer with more than Seven Years experience with very good experience in Zend Framework is available.
  2. You are doubted about whether the Organization allows your website idea to be listed on the site right ? The better way to get the answer is, contact the Organization directly and send a summary of your website idea. Also, if the website idea is similar to the funded websites, you can go ahead & post your request. Even though you posted, I understand that, there are some verification procedures and you can check with the support team at that time. Hope this helps you to start moving. Wish you all the success in the name of Jesus Christ.
  3. I like ZF 1 for MVC. I worked in Codeigniter and ZF. ZF is good in my view if you are developing a medium to big project. And for small project, you can use Codeigniter.
  4. I also agree with this statement. Zend certification is there and is globally recognized. Then why u are thinking about another one without any guarantee? People are like this. They are not ready to accept anything.. always need new things .. and wandering..
  5. Yes, I am searching a help-desk ticket system. Can you please suggest the best one with good User Interface (both on back end & front end), more features, object oriented etc..
  6. Hi, Can you people suggest one good opensource Ticketing system using php-mysql? Also with more features and good front end etc.. Thank You
  7. Hi, About the difference & usage of Zend Framework Acl, Auth & Session Components. I am working on a Blog application by using Zend Framework. I found that, I can do the checking of user permission to different areas of the site by using ACL component. But the same thing can be do by using Session like in native php. Which one is the used widely in Zend Development ? Also, on login time , login details are stored by using Zend_Auth. How can I store other user details such as user id, email id etc? Where usually store these details, in Session or Zend_Auth or Zend_Acl ? Does it use Zend_Acl for storing the details or only for controlling the access permissions? I am new to Zend Framework and doesn't get a clear idea about the difference between Zend_Acl,Zend_Auth & Zend_Session Please help me. Thanks in advance.
  8. Sorry I don't get, which package you are talking about.
  9. Still I couldn't find any reliable package for creating the instant messaging facility with php. There is a 'libpurple' library in php for doing this. But I can't configure it in Fedora.
  10. Hello Rose, I have tested your code and is working fine here. I have changed the permission of the file (addresses.txt).. Thats all.. <?php $num = 1; $myFile = "addresses.txt"; $fh = fopen($myFile, 'a') or die("can't open file"); fwrite($fh, $num); fwrite($fh, $Address); fclose($fh); $num = $num + 1; ?> check this code.. Regards, Joseph..
  11. You fully misunderstand me. What I am developing is to create a script to send some alerts to IM. I am trying this for my client. If you believe me, please help me. Any ideas or links to any website would be great.
  12. Hi, I wish to create a php script from where I can send messages to an Instant Messenger (Yahoo, AOL, Skype, MSN). And before sending the message, I would like to check to see whether the person is online or not. I wish to hear your suggestions about this. Is there any php script available for doing this work ? Thank You.
  13. Hi, First of all I would like to welcome you to the world of php. What I understand is from your post is, you have to show the status of the word typed in the input box. You have to receive the word and then read the csv file one line at a time. Each time you read one line, compare the input value with the array (record read from the csv file). You can find more details about csv reading from: http://in.php.net/fgetcsv Also you can read the entire content to an array & do the array searching for getting the status of the word. Hope this helps you Thank You.
  14. Thank you for your reply. By writing the first records in the logs.txt, this will works and can find out the changes in future.
  15. Hi, I would like to hear from you all about the Logging of all database changes. I have lots of tables in the database and many user have the permissions to edit these details. But the Super Admin, can view all the changes, like the old data, new data, who changed, changed date & time. I need these data to be logged whenever someone makes changes and able to see in future also. Any package is available for doing this task ? Also, if you have any great idea about this, please share that also. Thank You.
  16. I think, the extract() function will help you to do the task. See the details at: http://in2.php.net/manual/en/function.extract.php I have also a suggestion for you. Please print the $_POST array before the first foreach loop. Mostly the POST array will contain more values than you expect. So in your case, it only need to loop the form fields... Thank you, Joseph
  17. Hi Try to add a php function 'ob_start()' at the top of your page like <?php ob_start(); require("config.php"); // add other code here.... ?> Thank You, An. Joseph
  18. Hi, I got the following errors, when I tried to create an XML file that used a CDATA creation function: Fatal error: Call to undefined method DOMDocument::create_cdata_section() in xx/xx/create_cdata.php on line 10 $dom = new DOMDocument('1.0'); $feeds = $dom->createElement('feeds'); $dom->appendChild($feeds); $feed = $dom->createElement('feed'); // Create CDATA $urlcdata = $dom->create_cdata_section("Cdata Content"); $feed->appendChild($urlcdata); $feeds->appendChild($feed); echo $dom->saveXML(); Please help me to solve this. Thank You, An. Joseph
  19. How can I convert an XML object to string? so I can store it in the table.. Any other method available to directly convert object to string ?
  20. Yes, that is a method to validate the XML. But I also wnat to check whether it is of RSS version 2.0 or not
  21. Hi, I have to test whether the returned data is a valid RSS file contents or not. For doing that, I can check the header along with the data. But I wish to check the structure of the RSS and I only needed RSS feed of version 2.0. Can someone correct this Reg Expr? Example URL: (view page source) http://rss.news.yahoo.com/rss/topstories $pattern = '#<\?xml .*(version=\"1.0\").*\?>(\s)*<rss .*(version=\"2.0\").*>(\s)*<channel>(\s)*<title>(.*)</title>(\s)*.*<description>.*</description>.*(<item>.*</item>)*#'; Upto description it works well. But after that, it doesn't return the expected result. Also I have to check the Two Ending tags. "</channel></rss>" .. Thank You, Joseph.
  22. Hi, I am on the creation of a php script to validate the RSS content.. can someone please suggest any URL which helps to do that ? Thank You, Aniesh.
×
×
  • 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.