Phplist Mod Very Simple

Phplist Mod Very Simple
Greetings,
I have a phplist
and i configured it to require the following attribute:

complete name:
mobile no:

now what i need is a simple modification where i can have
a page where all the complete names will be listed.

Ex:

the page is called guest list:

Total no of guest: 200
John Doe
Jane Doe

the list starts with a to z

this page can be access by anyone and updated in real time

lowest bid will be considered… will give a great feed back
thanks

Immediate: Php/design/smarty

Immediate: Php/design/smarty
hi,

I need an experienced coder for making updates in a php website with a Smarty theme.
This is a foriegn language site so most work will be done step by step with screenshots communicating via Skype.
You need to be able to start immediately after your bid is accepted and complete the job in a few hours.

The main work is replacing the graphics in the home page.
The new design is already done in html and psd files, just need to carefully and delicately place the new design in place and maintaining all functionality.
Also, I would need the header and the footer of the new design to replace the header and the footer of all the pages in the site.

Please bid if you have php and design experience and only if you are available for immediate work via Skype.

Thanks.

Add Pdf Links

Add Pdf Links
I need to add PDF links from my menu on my website. When someone clicks on the menu button on the website, I need it to go to a PDF that I have. Example: www.equiposports.com – Uniforms & Apparel – Letter Jackets – eQuiposports Jacket (when you click eQuipo Sports Jackets, I want it to open up a PDF file.

Online Drug Store / Pharmacy

Online Drug Store / Pharmacy
This site is a online pharmacy drugstore website which will be running off of an open source shopping cart program, preferrably the zencart but I would also consider OsCommerce. In addition to the shopping cart programs standard features it will need to do the following (some are standard features but will need to be implemented). All shopping cart scripts must be installed and configured as well as databases created and configured in MySQL, which must also be implemented into the site asthetic design.

It need to have a front end shopping cart for the world to use to shop which will include:

During shopping the shopping car would keep track of the customer’s picked items and add up the total cost.

When the sale is completed it would send an email to the customer and any addresses listed for the website’s administrators. Each order would have a unique order number and the customer would be able to log in and view their order status or send a customer service email at any time.

It will need to have a backend administration area which will allow me to:

search and view orders, and update the order status or enter notes regarding an order. After searching or browsing it will return a list of orders meeting the search filter criteria. You can then click on one of these returned search results to bring up order details and allow me to modify the order and update the order status.

for the product catalog it will allow me to add, edit or delete new items to the catalog.

each item in the catalog will allow for unlimited fields but will contain atleast the catalog number, product name, product price, product category, product description, link to thumbnail image for search result returns, and a link to the larger product image for the actual page, and can even have the link to a high res image that you can link to from the product page.

Each product will let the shopper set select attributes for that product such as size or color which dont affect price as well as other attributes which may change price such as number of milligrams, an item being a brand name or for other item premiums.

Other pages on the site besides the shopping cart will be an about us page, a FAQ page, a terms and conditions page, a privacy policy page, contact page, a shipping info page, a members or track order page, and perhpas a site map?

The ability to email the customer base all at once

The ability to input the product catalog from a deliminated flatfile into the product catalog database.

The ability to output the catalog to a flatfile database and/or an excel file.

Coupon Codes – offer coupons to offer customers with special discounts or promotions.

Affiliate Program – will allow affiliates to sign up and will track them at the source of their sales and visitors. It will allow me to specify the payout terms or percentage. It will offer me the admin to see the total sales and see them broken up by affiliate and to view each affiliates results independantly. It will also keep tracks of payouts and a running balance of any money owed. It will allow me to specify a minimum amount each affilaite would need to earn before the affiliates get paid out.

This is the first phase of the site….there will be other developement once this is complete on this site as well as many others.

Thanks!

Oscommerce Programmer

Oscommerce Programmer
I need osCommerce programmer to finsih a project today

what u have to do is complete the shop

u have to complete all pages untill csutomer make the payment

we have only one category

http://www.supportmyshop.com/bwh/shop/product_info.php?products_id=28

I need this kind of layout

http://www.styleguide.com.au/catalog/index.php?cPath=6

Design Clone Only – No Scripts

Design Clone Only – No Scripts
Hi,

I need a clone of an existing site: http://www.howlifeworks.com/

I have a similar domain name and will need a logo and graphic elements to suit the domain and specific theme, both of which I will disclose once the winning bid has been chosen.

All that is required is to clone the layout and do some original graphic work. No Scripting – all functionality (the search box, related articles, email signup, etc.) will be done later on, no need for that now. Layout/Graphics work only.

Layout/Graphic work only – will need a new logo, color scheme, buttons, etc. – all new graphic elements, same layout.

Need this done urgently (within 24 hours of bid acceptance) and it has to look as good or better than the original site.

Will escrow immediately upon selection – please include relevant examples of your work for my review.

Need this done within 24 hours – please keep that in mind when bidding!

If I like your work, I have a lot more of these sites to do, so there is more work available for the right designer.

Amember Mods/form Posting

Amember Mods/form Posting
I have two tasks that involve javascript/posting to two forms at once.

1. domain.com/amember/admin/users.php?action=add_form
the manual user add form needs to also post the first name last name and email to another form at the same time.

2. domain.com/amember/signup.php the main signup form needs to post to a second form as well – with the same first name last name and email values to another form.

This can be done via onclick posting the second form to a iframe or whatever clever way you can figure it out.

On acceptance I will provide you with the code for the second form, and I will setup an escrow payment.

I want you to do this on your own, then email me the code changes to make, then I’ll test it on my end, and approve the escrow. You NEED to be familiar with amember, I can provide you a few files of amember if needed but you will not get ftp access to my site.

This shouldn’t take more than a day. I need a working solution asap.

Quick Tip: Easy Sequential Animations in jQuery

Quick Tip: Easy Sequential Animations in jQuery

In this video quick tip, I’ll demonstrate an easy way to allow for sequential animations of an infinite number of elements. I originally learned this technique from Dave Methvin, but don’t think that many people are aware of this neat little trick.


The Goal

We want to filter through an infinite number of elements on a page, matching some selector, and then make them sequentially fade out.

The HTML

<body>
  <p>Watch</p>
  <p>Me</p>
  <p>Disappear</p>
</body>

The jQuery

var paras = $('p'),
    i = 0;

// If using jQuery 1.4, you don't need to do || [].
(function() {
  $(paras[i++] || []).fadeOut('slow', arguments.callee);
})();

We begin by “caching” all of the paragraphs on the page, wrapped in the jQuery object (var paras). We also create an iterator variable – i. This iterator will allows us to target each new paragraph element, without knowing the specific length of the paras object ahead of time.

Within the self-invoking anonymous function, we get the first paragraph on the page with “paras[i]” … But we want to increment i by one for each iteration. This way, the next time the selection is called, it’ll be referring to the next element in the wrapped set. So, we must be sure to write paras[i++]. Then, it’s a simple matter of calling fadeout, and passing arguments.callee as the callback function, to allow for recursion. This will be equal to the function it’s contained in; so we’re essentially saying “rinse and repeat!”

alert(arguments.callee); // alerts the following

 (function() {
  $(paras[i++] || []).fadeOut('slow', arguments.callee);
})();

Note

If, for some reason, you’re using jQuery 1.3 or older, you need to specify what should happen when paras[i] is equal to an element that doesn’t exist. In older versions of jQuery, it returns an error, “undefined.” To compensate, we pass $(paras[i++] || []) to specify that, if the element doesn’t exist, we instead wrap an empty array, to avoid any errors.

It should be noted that, as of jQuery 1.4, this is unnecessary, as jQuery will return the jQuery object instead.