EDDYMENS

Eddymens (List page)


Last updated 2023-05-09 15:13:38

Simple PHP Templating Engine

In this article, I will share two ways you can implement a simple templating engine in PHP. The focus is on data templating and does not include implementation for looping and handling conditions. PHP comes with an inbuilt templating syntax you can use. ...

Last updated 2023-05-09 14:38:23

What Is Deep Linking?

The general term links is used interchangeably with URLs to refer to the piece of string you type into the search bar of a browser to land on a website. A deep link in this case is a URL that points to a particular web page of a website. Say you wanted to visit my A...

Last updated 2023-05-08 09:21:57

Mermaid Tutorial (setup)

If you do not already know Mermaid diagrams makes it possible to create diagrams within your Markdown or HTML. Mermaid diagrams might not yet be supported within your CMS in which case you...

Last updated 2023-05-08 09:21:54

Mermaid Tutorial (flowchart)

flowchart TD start(START) --> input[/Get l,b/] --> process[A = l*b] --> decision{is A < 12} decision --> |Yes| input decision --> |No| output output[/print A/] --> stop(STOP) import mermaid from 'https:/...

Last updated 2023-05-01 05:51:47

Php://input Returns Empty

There are many reasons why will return an empty result. One of the reasons will return an empty result is if the URL you are sending the data to redirects to a final destination. Use an online ...

Last updated 2023-05-01 05:28:09

Export CSV In Javascript

The snippet below allows you to export your provided data as CSV from your Javascript frontend: ...