Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Added a hyperlink to the SQLite-PHP project. (CVS 517) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ffdeec3087e168acaa04a6331e91369e |
User & Date: | drh 2002-04-03 20:50:21.000 |
Context
2002-04-04
| ||
02:10 | Fix for bug #2: Add support for TABLE.* in SELECT statements. (CVS 518) (check-in: c2320eabfe user: drh tags: trunk) | |
2002-04-03
| ||
20:50 | Added a hyperlink to the SQLite-PHP project. (CVS 517) (check-in: ffdeec3087 user: drh tags: trunk) | |
2002-04-02
| ||
13:27 | Version 2.4.6 (CVS 516) (check-in: 5ae7efd87f user: drh tags: trunk) | |
Changes
Changes to www/index.tcl.
1 2 3 | # # Run this TCL script to generate HTML for the index.html file. # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this TCL script to generate HTML for the index.html file. # set rcsid {$Id: index.tcl,v 1.58 2002/04/03 20:50:21 drh Exp $} puts {<html> <head><title>SQLite: An SQL Database Engine In A C Library</title></head> <body bgcolor=white> <h1 align=center>SQLite: An SQL Database Engine In A C Library</h1> <p align=center>} puts "This page was last modified on [lrange $rcsid 3 4] UTC<br>" |
︙ | ︙ | |||
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | puts {<h2>Related Sites</h2> <ul> <li><p>An ODBC driver for SQLite can be found at <a href="http://www.ch-werner.de/sqliteodbc/"> http://www.ch-werner.de/sqliteodbc/</a>.</p></li> </ul>} puts { <p><hr /></p> <p> <a href="../index.html"><img src="/goback.jpg" border=0 /> More Open Source Software</a> from Hwaci. </p> </body></html>} | > > > > | 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | puts {<h2>Related Sites</h2> <ul> <li><p>An ODBC driver for SQLite can be found at <a href="http://www.ch-werner.de/sqliteodbc/"> http://www.ch-werner.de/sqliteodbc/</a>.</p></li> <li><p>A PHP module for SQLite can be found at <a href="http://freshmeat.net/projects/sqlite-php"> http://freshmeat.net/projects/sqlite-php</a></li> </ul>} puts { <p><hr /></p> <p> <a href="../index.html"><img src="/goback.jpg" border=0 /> More Open Source Software</a> from Hwaci. </p> </body></html>} |