Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Member Avatar for oksam

I have used following mod_rewrite rules: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %(REQUEST_FILENAME) !-l RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] to get **www.myweb.com/newyork** from **www.myweb.com/index.php?url=newyork.** Now I trying to get pretty url for this page www.myweb.com/itemdetail?itemid=1000 to www.myweb.com/itemdetail/1000 I have been trying several mod_rewrite rules, but I have not …

Member Avatar for pritaeas
0
153
Member Avatar for oksam

In our webiste, After user signup, we send an email with acitivation link to their email address. We are using PHP mail() to send a simple email. Until this point, we have checked with yahoomail, gmail, hotmail.. it works fine. But yesterday, we were checking with the microsoft outlook. No …

Member Avatar for fobos
0
623
Member Avatar for oksam

I am working on a website where users can post items. I would like to provide them a custom analytics for ther items. So that the item owner can figure out how many people visited their item. I did some research in Daniweb, most of suggestion were made about google …

Member Avatar for JorgeM
0
91
Member Avatar for oksam

I have been trying to create a search query. Following is my mysql query: SELECT id, title, SUBSTRING(description, 1, 80) AS description,price,picture,date FROM movie INNER JOIN movieLocation ON movie.id = movieLocation.movieid WHERE TRUE AND movieLocation.Location='NEW YORK'AND MATCH(movie.title, movie.description) AGAINST ('Catch me if you can'); There is an error on this …

Member Avatar for smantscheff
0
135
Member Avatar for oksam

This is my ajax script: [code=JavaScript]type: "POST", url:"getresponse.php", data: data, success: function(response){ uploadForm(response); } function uploadForm(response){ alert(response); $('#fileupload').uploadifySettings('scriptData',{'response': response}); }[/code] the alert function does show the right value of response but for some reason the value of response is not sent as POST. Funny thing is if I change {'response': …

Member Avatar for diafol
0
70
Member Avatar for oksam

I am trying to give each MOVIE there own url name, for example, [url]www.helloworld.com/BATMAN[/url]. I have been using mod_rewrite to create such url. I have been using following htaccess code to achieve such result. RewriteEngine ON RewriteCond %(REQUEST_FILENAME) !-d RewriteCond %(REQUEST_FILENAME) !-f RewriteCond %(REQUEST_FILENAME) !-l RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] The …

Member Avatar for oksam
0
297