Gossamer Forum
Home : Products : DBMan : Installation :

How do I put | ??

Quote Reply
How do I put | ??
I've problem when i want to put the | into the html.pl

eg i want this
| Home | Add | View | Delete | Modify | List All | Admin | Log Off |
to be in. it will be hyper link. how do i solve it?
Quote Reply
Re: How do I put | ?? In reply to
That is how the default footer has the menu of commands -- with a | between them. If you want it to look like that, don't do anything at all to the default and you'll be fine.

Throughout most of DBMan, the print structures are in the form of
print qq| ... |;

But you can use other characters with the print statements. The following are perfectly "legal" :

print qq~ ... ~;
print qq! ... !;

I haven't tried any others, but my books on Perl say that any character can be used.


------------------
JPD





Quote Reply
Re: How do I put | ?? In reply to
Thanks for ur help! I've got it working.