From 3e400c3df5572524b7ba08b030f45eb3ba6b7734 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= <john@ankarstrom.se> Date: Fri, 17 Sep 2021 22:08:50 +0200 Subject: Add database helper functions --- t/post.t | 8 +++++++- t/post.tc | 14 +++++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) (limited to 't') diff --git a/t/post.t b/t/post.t index a74f29a..56d3c37 100644 --- a/t/post.t +++ b/t/post.t @@ -1 +1,7 @@ -<h1>Post <% printf("%d", id); %></h1> +<h1>Post <% printf("%d", id); %>: <%= post->subject %></h1> +<p>From: <%= user->full %> +<<a href="?user=<% printf("%d", user->id); %>"><%= user->name %></a>> +<br>Date: <% PFREE(date(post->created)); %> +<pre> +<%= post->text %> +</pre> \ No newline at end of file diff --git a/t/post.tc b/t/post.tc index 7c36950..2f81de0 100644 --- a/t/post.tc +++ b/t/post.tc @@ -1,3 +1,15 @@ printf("<h1>Post "); printf("%d", id); -printf("</h1>\n"); +printf(": "); +printf("%s", post->subject ); +printf("</h1>\n<p>From: "); +printf("%s", user->full ); +printf("\n<<a href=\"?user="); +printf("%d", user->id); +printf("\">"); +printf("%s", user->name ); +printf("</a>>\n<br>Date: "); +PFREE(date(post->created)); +printf("\n<pre>\n"); +printf("%s", post->text ); +printf("\n</pre>"); -- cgit v1.2.3