Jump to content

I Need Some Help Please


Madss

Recommended Posts

I have a problem.... but different, I have a script that search and for show I use this
echo "<td>".$row["NoCuenta"]."</td> \n"; ...............and I have another to download the files of me db and I use this.................. <a href="download.php?id=<?=$id;?>"><?=$name;?></a>

My question is, how can I do for the both things appear at the same time??? I really neeed help, cause I can do the both things but not at the same time....


If you don't understand... please let me know to show you my scripts..... my mail is lagart14@hotmail.com I hope you can help me...
Link to comment
Share on other sites

I don't really understand what you trying to say, but check again this
[code]<?=$id;?>"><?=$name;?>[/code]

It should be
[code]<?php $id; ?>"> <?php $name; ?>[/code]

It's actually depends on your code, if you show your script that would be easier to understand.
Link to comment
Share on other sites

actually, his code method is php shorthand. your method will not work. all you are doing is opening the php tags and putting a variable there. no echoing or nothing. with the php tags, you would have to do <?php echo $id; ?> but that is the same as doing <?= $id ?> it's shorthand.

but i agree, madss you need to be more specific. what do you mean, you can do one or the other, but not both at the same time?
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.