Showing posts with label script. Show all posts
Showing posts with label script. Show all posts

Tuesday, July 29, 2008

Google AdWords Keyword Generation

It is possible to generate keywords for AdWords on the fly. There is a sample keyword generation tool for adwords that can generate a list of keywords. This could be extended to list the keywords and map them to certain pages. It could make a list of keywords for example, that would send to a certain link which performs a search query to better direct the user to the correct page. This would better than doing it by hand because it could be done with a large number of keywords. AdWords limits the number of keywords per ad campaign, but many ad campaigns can be created with each type of ad that links to a certain location on the fly. With the script, it could be possible to generate 10,000 keywords with ease. The script is free to use.

Monday, July 7, 2008

PHP user's aborting scripts

ignore_user_abort() ignores user's aborting the execution of a script. This can prevent a system from coming to an unstable state. If a script executes and has two critical operations which depend on each other, then both of these should be executed and not just one of these operations. Use ignore_user_abort(TRUE); to prevent this occurrence.