I am trying to create a simple module by following the instructions in http://websmiths.co/blog/very-introduction-drupals-hookformalter.
I've created the following two files along with the content in them as below:
mysite_simplenews.info
name = Custom Example
description = Just a simple example module
version = 0.1
core = 7.x
package = Alpha Custom Modules
mysite_simplenews.module
<?php
I've uploaded the module to the server, but it is not being picked up in the list of modules.
Is this because I am running Drupal 7 and the tutorial is for drupal 6? Is it because of the <?php
line in my .module file?