在php变量中添加样式

时间:2015-07-15 15:50:59

标签: php html css3

我使用了简单的php分页,但现在我必须在我的分页上添加一些风格。但我不知道如何在php变量中添加css样式。 这是我的代码:

**Procfile**

web:      bundle exec puma -C ./config/puma.rb

**config.ru**

require_relative 'myapp'
run Sinatra::Application

**myapp.rb** 

require 'sinatra'
require 'byebug'

get '/' do
  message="oh, hello!"
  byebug
  message
end

**puma.rb**

workers 2
threads_count = 5
threads threads_count, threads_count

我想将样式添加到$ number变量。

0 个答案:

没有答案