Psd To Css Php-asap

I need the following into Joomla format.

I need it to look 97% identical. Using the same fonts and colors and sizes as I have, I need a twitter code inplace and coded to look how mine looks.

There are two PSDS in this but they are recently pretty simple and clear, I need a nice drop down menu for the top, however please note the menu may change so I need to be able to change that as well… pictures in the middle if you change from 1 or 2 the picture changes and the text changes so its their own slide. the read more should go to whatever page we link it to.

Psd To Joomla-asap

I need the following into Joomla format.

I need it to look 97% identical. Using the same fonts and colors and sizes as I have, I need a twitter code inplace and coded to look how mine looks.

There are two PSDS in this but they are recently pretty simple and clear, I need a nice drop down menu for the top, however please note the menu may change so I need to be able to change that as well… pictures in the middle if you change from 1 or 2 the picture changes and the text changes so its their own slide. the read more should go to whatever page we link it to.

Magento Shareasale Googchekout

PLEASE READ THIS BEFORE BIDDING: YOU MUST HAVE EXPERIENCE WORKING WITH MAGENTO. DO NOT BID IF YOU HAVE NEVER WORKED WITH MAGENTO. PLEASE INDICATE WHETHER OR NOT YOU HAVE WORKED WITH MAGENTO IN YOUR BID.

I currently am running a ecommerce site that runs Magento v.1.3.2.4, and I require a programmer who is already familiar with Magento to integrate the ShareASale Affiliate program tracking code for Google Checkout (I have already integrated the Magento checkout, but the Google Checkout needs to be done as well). Please read below regarding the integration details from ShareASale.

Here are the guidelines from ShareASale on the integration with Google Checkout: https://help.shareasale.com/index.php?_m=knowledgebase&_a=viewarticle&kbarticleid=127&nav=0,30,31

Google Checkout will allow you to include tracking pixels on the order confirmation page, through their Web Beacon feature.
If you are using Google’s shopping cart (HTML API) integration method, you will need to place the following code:

<form id=”googlecart-checkout-config”>
<input type=”hidden” name=”checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.url” value=”https://shareasale.com/sale.cfm?transtype=sale&merchantID=XXXX”/>
<input type=”hidden” name=”checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-1.name” value=”tracking”/>
<input type=”hidden” name=”checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-1.type” value=”order-id”/>
<input type=”hidden” name=”checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-2.name” value=”amount”/>
<input type=”hidden” name=”checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-2.type” value=”order-subtotal”/>
</form>
Where you replace the XXXX with your ShareASale Merchant ID number.
Please place this code on the same page as your checkout button, below any other Google checkout code you have on that page.

If you are using Google’s Buy Now Button integration method, you will need to add the following code to each of your Buy Now buttons:

<input type=”hidden” name=”checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.url” value=”https://shareasale.com/sale.cfm?transtype=sale&merchantID=XXXX”/>
<input type=”hidden” name=”checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-1.name” value=”tracking”/>
<input type=”hidden” name=”checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-1.type” value=”order-id”/>
<input type=”hidden” name=”checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-2.name” value=”amount”/>
<input type=”hidden” name=”checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-2.type” value=”order-subtotal”/>
Where you replace the XXXX with your ShareASale Merchant ID number.
Please place this code above the closing form tag in your Buy Now button.

If you are using Google’s XML API integration method, please use the code below:

In your Cart XML, you will need to include an XML tag for parameterized-url. For ShareASale.com, your code should look like this:


<merchant-checkout-flow-support>
<parameterized-urls>
<parameterized-url url=”https://shareasale.com/sale.cfm?transtype=sale&merchantID=XXXX”>
<parameters>
<url-parameter name=”tracking” type=”order-id” />
<url-parameter name=”amount” type=”order-subtotal” />
</parameters>
</parameterized-url>
</parameterized-urls>

</merchant-checkout-flow-support>

Where you replace the XXXX with your ShareASale Merchant ID number.
For more details, please see Google’s documentation: http://code.google.com/apis/checkout/developer/checkout_pixel_tracking.html

Php Login And Mysql Back End

I just started a local “directory” site which allows local service-oriented businesses to register and create a profile from a single form (www.needitdone.net/register.php). Currently, I am manually creating (“hand coding”) these profiles from an HTML template using the data emailed to me through a PHP Form Mail script which I configured for this site. I would like to add a backend with login capability which would enable these profiles to be edited by the registered user (businesses) and also have the ability for them to upload additional photos which are to be stored in a pre-existing image folder. The profiles themselves DO NOT necessarily have to be edited “on the fly” (dynamically), I just need to be able to access the records (in whatever format) containing the revised text data after it has been resubmitted. Using this data, I can then go back and manually edit the HTML profile page for that particular business.

At logon, the business would be directed to a page which is identical to the static HTML profile I’ve already created for that business with the possible addition of an SSI link that reads “edit profile”. When they click on this link a form similar to the original registration form should appear with their original data repopulated in the HTML fields, similar to an Ebay or Craigslist listing that is being edited. The PHP script that is run when they re-submit this form should write the new data to a database and POST the additional images to their respective image folder (the one that I created when they first signed up).

For now, the MySQL database can contain a single table and should be configured to be searchable and will include some additional fields that are not derived from the original form such as:
-date
-keywords relating to the category of the business
-path to folder containing images
(etc.)

I am currently set up on JustHost.com with PHP 5.2. MySQL can be configured via phpMyAdmin.
I do not have shell access, but I can get it at additional cost if you need it.

To summarize, I need a PHP script which will:

-retrieve records from a database and re-populate a form (needitdone.net/register.php);
-write records to a database;
-POST images to pre-existing files.

I have very limited knowledge of PHP and MySQL and I’m open to any suggestions.