build voice enabled applications directly in php

Posted by mahmud ahsan Filed Under PHP, Technology with 1 Comment

home_featured5VoicePHP began with the sole aim of replacing text based interaction with voice while keeping everything else the same. It’s not an extension to PHP; infact it’s the same PHP which now outputs voice instead of text and also takes input as voice instead of text. In technical terms, it’s PHP whose standard text based input & output (stdio, stdout in programmer’s term) are replaced by voice equivalent.

check it out

pre-launch checklist before make your site live

Posted by mahmud ahsan Filed Under Java Script, PHP with No Comments

checklistsometimes we the developers, up our site live and face some problems. this is very often happen when deadline comes nearer. if we maintain a pre-launch checklist before make our site live then we may not face such problems like:

  1. Error Management: check whether your site has a 404 not found page that includes
    links to functional pages. this may happen when you port an existing site to some major changes. so include some pages links to this page so that user can easily find the working page.
  2. Continue

my presentation about zce in phpxperts seminar 2009

Posted by mahmud ahsan Filed Under PHP with No Comments

how to detect fan of a facebook page

Posted by mahmud ahsan Filed Under Facebook with 28 Comments

facebook_platformsome days ago, i was facing a critical problem of facebook page. i was stuck for more than 2 days to get the solution. detecting facebook fan is very easy in application’s canvas page or application’s tab page in user’s profile. i’ve given a screenshot of tab profile in a facebook page.


tab-profile

Continue

prepare yourself for zce exam

Posted by mahmud ahsan Filed Under PHP with 6 Comments

today i was present in a seminar arranged by phpexperts in association with Computer Club, Brac University. where my presentation topic was prepare yourself for zce exam.
Continue

method chaining in php5

Posted by mahmud ahsan Filed Under PHP with 4 Comments

phpপিএইচপি৫ এ মেথড চেইনিং
when we design class we should keep in mind that, how we could make it more user friendly in usage purpose and development purpose. now i’m talking about a feature introduced by php5 called method chaining as part of the oop improvement over php4. this enable us to do pretty cool things like:

$obj->methodX()->methodY()->.............->methodZ();

a small change between php4 and php5 is, in php5 method can return object. but this change help us to think in a new way to handle object and it’s methods.
Continue

what is your IQ?

Posted by mahmud ahsan Filed Under Facebook with No Comments

Do you think your IQ is better than me, then come on give test and show your friends about your IQ?

advertise-logo

alternative way of assigning html in php – php tips

Posted by mahmud ahsan Filed Under PHP with 1 Comment

php

পিএইচপি ভ্যারিয়বলে এইচটিএমএল অ্যাসাইন করার বিকল্প রাস্তা
As a facebook application developer, sometimes we need to assign large portion of html,css code in php variable and need to pass that variable in some api. most of the time i found many programmers use this way:

 <?php     $a    =   <<<EOD
<div>         my name is $name         blah blah blah....</div>
EOD;     call_api($a); ?> 

Continue

attach application’s content in facebook message

Posted by mahmud ahsan Filed Under Facebook with 6 Comments

facebook_platformin this post, i’ll show how will you attach your facebook application’s content like photos, link  in facebook message.

have you ever noticed, when you compose message for your friend, there is an option named “Attach”. look below image:

fb_msg_1 Continue

authenticate your site using google friend connect – api

Posted by mahmud ahsan Filed Under Web Development with 1 Comment

in my previous article http://www.thinkdiff.net/?p=430 i described how to add google friend connect gadget in your site. in this article i am describing how you will fully authenticate your site by integrating google friend connect.

suppose your site has a default authentication system. but for new users who doesn’t want to register, how could you authenticate him. one of the solution of this problem is google friend connect.

gfc-signin Continue

Page 4 of 11« First...«23456»10...Last »