Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. proc sql;
  2. select '<a href="#'||m.anchor_text||'">'||m.anchor_text||'</a>'
  3. from matrix m;
  4. quit;
  5.  
  6. anchor1 <-- this is a href link to anchor1
  7. anchor2 <-- this is a href link to anchor2
  8.  
  9. title '<a href=#anchor1></a>Data on matrix1';
  10. proc sql;
  11. select * from matrix1;
  12. quit;
  13.  
  14. <a href=#anchor1></a>Data on matrix1
  15. (matrix1 data here)
  16.  
  17. <a name=&#39;anchor1&#39;></a>Data on matrix1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement