Jump to content

Mysql and php help with variable


ianhg

Recommended Posts

Hi,

I am very new to this. Can someone point me in the right direction please. I have mysql database which contains a variable $pricelist. The client is registered via an admin area. Is sent the login (email and password).

Once logged in they see their details. All this works fine. Each client will have a different price list, total number of price lists options will be about 10. In the database the variable will return pricelist1.pdf or pricelist2.pdf etc. This is also OK.

My question is how do I provide a hyperlink to the pricelist1.pdf file (which is located on the server) for the client to view and download if they wish?

Thanks in advance.

 

Link to comment
Share on other sites

Pseudo-code:

<?php
$query = "SELECT `price_list` FROM `table` WHERE `user_id` = {$_SESSION['user_id']}";
$result = mysql_query( $query );
$array = mysql_fetch_row( $result );
echo "<a href=\"/path_to/directory_with/pdf_files/{$array[0]}\">Your Pricelist</a>";

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.